Commit8f61e512Recorded1 Apr 2026Repositorysigil-r7rs
Migrate to 0.9.1 transitive deps with version ranges
Message
Replace tag-pinned dependency with version range (^0.9.0), generate lockfile for reproducible builds, bump package version to 0.9.1, and update build instructions with sigil deps install workflow.
Changed
README.md | 8 ++------
package.sgl | 6 ++----
sigil.lock | 9 +++++++++
3 files changed, 13 insertions(+), 10 deletions(-)Diff
README.mdmodified
@@ -49,13 +49,9 @@ Then import standard Scheme modules:
49
## Building 50
51
```+52
sigil deps install 53
sigil build−53
```−54
−55
For local development with monorepo redirects:−56
−57
```−58
sigil build --redirects dev-redirects.sgl+54
sigil test 55
``` 56
57
## Licensepackage.sglmodified
@@ -1,8 +1,6 @@
−1
(define sigil-repo "codeberg:sigil/sigil")−2
1
(package 2
name: "sigil-r7rs"−5
version: "0.9.0"+3
version: "0.9.1" 4
description: "R7RS-small compatibility library for Sigil" 5
url: "https://codeberg.org/sigil/sigil-r7rs" 6
license: "BSD-3-Clause"@@ -13,4 +11,4 @@
11
(config name: 'release output-dir: "build/release" debug?: #f optimize: 2)) 12
13
dependencies: (list−16
(from-git url: sigil-repo package: "sigil-stdlib")))+14
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")))sigil.lockadded
@@ -0,0 +1,9 @@
+1
;; Auto-generated by sigil deps install. Do not edit.+2
(lock+3
(package name: "sigil-stdlib"+4
url: "codeberg:sigil/sigil"+5
ref: "^0.9.0"+6
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"+7
package-selector: "sigil-stdlib"+8
version: "0.9.1")+9
)