Commitfeb18372Recorded25 Jun 2026Repositorysigil-audio
v0.11.0: bump to Sigil 0.17 toolchain
Message
Sigil 0.17 makes the package-level sigil: field mandatory and derives the native codegen runtime (sigil-lib) from it, so building under the 0.17 compiler requires declaring sigil: ^0.17. Move the sigil-stdlib pin to ^0.17 to match. Minor bump because consumers caret-pinning sigil-audio must move to the 0.17 line.
Changed
CHANGELOG.md | 15 +++++++++++++++
package.sgl | 5 +++--
sigil.lock | 13 ++++++++++---
3 files changed, 28 insertions(+), 5 deletions(-)Diff
CHANGELOG.mdmodified
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
5
The format is based on [Keep a Changelog](https://keepachangelog.com/), 6
and this project adheres to [Semantic Versioning](https://semver.org/). 7
+8
## [0.11.0] - 2026-06-25+9
+10
### Changed+11
+12
- Raised the toolchain requirement to Sigil 0.17. The package now+13
declares `sigil: "^0.17"` and pins `sigil-stdlib` to `^0.17`. Sigil+14
0.17 makes the package-level `sigil:` field mandatory and derives the+15
native codegen runtime (`sigil-lib`) from it, so building under the+16
0.17 compiler requires this bump. This is a minor release because+17
consumers caret-pinning sigil-audio must move to the 0.17 line.+18
+19
### Requires+20
+21
- Sigil 0.17+ (`sigil-stdlib` / `sigil-lib` 0.17 line).+22
23
## [0.10.2] - 2026-04-24 24
25
### Fixedpackage.sglmodified
@@ -6,7 +6,8 @@
6
7
(package 8
name: "sigil-audio"−9
version: "0.10.2"+9
version: "0.11.0"+10
sigil: "^0.17" 11
description: "Audio playback and streaming for Sigil" 12
url: "https://codeberg.org/sigil/sigil-audio" 13
license: "BSD-3-Clause"@@ -39,7 +40,7 @@
40
features: '(release cross windows))) 41
42
dependencies: (list−42
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.13.0"))+43
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.17")) 44
45
libraries: (list 46
(librarysigil.lockmodified
@@ -1,8 +1,15 @@
1
;; Auto-generated by sigil deps install. Do not edit. 2
(lock+3
(package name: "sigil-lib"+4
url: "codeberg:sigil/sigil"+5
ref: "^0.17"+6
sha: "61ba6501f4ff5d1fd534c13c4a3494b69cc88412"+7
package-selector: "sigil-lib"+8
version: "0.17.1") 9
(package name: "sigil-stdlib" 10
url: "codeberg:sigil/sigil"−5
ref: "^0.13.0"−6
sha: "2e95b0343b976057a7655b41f08f0930d6abb628"−7
package-selector: "sigil-stdlib")+11
ref: "^0.17"+12
sha: "61ba6501f4ff5d1fd534c13c4a3494b69cc88412"+13
package-selector: "sigil-stdlib"+14
version: "0.17.1") 15
)