Commit20e0de7bRecorded1 Apr 2026Repositorysigil-markdown
Migrate to 0.9.1 transitive deps with version ranges and lockfile
Message
Replace tag-pinned dependency URLs with version ranges (^0.9.0), generate sigil.lock for reproducible builds, and update README to show sigil deps install in the standard build workflow.
Changed
README.md | 12 +++---------
package.sgl | 8 +++-----
sigil.lock | 14 ++++++++++++++
3 files changed, 20 insertions(+), 14 deletions(-)Diff
README.mdmodified
@@ -59,16 +59,10 @@ A CommonMark-style Markdown parser for [Sigil](https://codeberg.org/sigil/sigil)
59
60
## Development 61
−62
Build with local dependency redirects:−63
−64
```sh−65
sigil build --redirects dev-redirects.sgl−66
```−67
−68
Run tests:−69
62
```sh−71
sigil test --redirects dev-redirects.sgl+63
sigil deps install+64
sigil build+65
sigil test 66
``` 67
68
## Licensepackage.sglmodified
@@ -3,11 +3,9 @@
3
;;; This package provides Markdown parsing with YAML frontmatter support, 4
;;; producing SXML output for use with (sigil sxml). 5
−6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")−7
6
(package 7
name: "sigil-markdown"−10
version: "0.7.0"+8
version: "0.9.1" 9
description: "Markdown and frontmatter parser" 10
url: "https://codeberg.org/sigil/sigil-markdown" 11
license: "BSD-3-Clause"@@ -26,5 +24,5 @@
24
optimize: 2)) 25
26
dependencies: (list−29
(from-git url: sigil-repo package: "sigil-stdlib")−30
(from-git url: "codeberg:sigil/sigil-peg" package: "sigil-peg")))+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")+28
(from-git url: "codeberg:sigil/sigil-peg" version: "^0.9.0")))sigil.lockadded
@@ -0,0 +1,14 @@
+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
(package name: "sigil-peg"+10
url: "codeberg:sigil/sigil-peg"+11
ref: "^0.9.0"+12
sha: "2a0adbd32b13fb835cf021a8e279341161a77436"+13
version: "0.9.1")+14
)