Commit19306523Recorded1 Apr 2026Repositorysigil-ledger

Migrate to 0.9.1 transitive deps with version ranges and lockfile

Message

Replace tag-pinned monorepo refs with version: "^0.9.0" ranges. Trim unused sigil-log and sigil-test deps. Add sigil.lock for reproducible builds. Update README build instructions to use sigil deps install workflow.

Changed
 README.md   |  6 +++---
 package.sgl |  8 ++------
 sigil.lock  | 15 +++++++++++++++
 3 files changed, 20 insertions(+), 9 deletions(-)
Diff
README.mdmodified
@@ -66,14 +66,14 @@ Handles standard hledger journal syntax:
66
67
- sigil-stdlib
68
- sigil-json (for hledger JSON output parsing)
69
- sigil-log
69
70
Requires `hledger` on PATH for report generation features.
71
72
## Building
73
75
```
76
sigil build --redirects dev-redirects.sgl
+74
```bash
+75
sigil deps install
+76
sigil build
77
sigil test
78
```
79
package.sglmodified
@@ -3,8 +3,6 @@
3
;;; Provides functions for reading and writing hledger journal files,
4
;;; parsing transactions, and generating financial reports.
5
6
(define sigil-repo "codeberg:sigil/sigil#v0.8.0")
7
6
(package
7
name: "sigil-ledger"
8
version: "0.1.0"
@@ -26,10 +24,8 @@
24
optimize: 2))
25
26
dependencies: (list
29
(from-git url: sigil-repo package: "sigil-stdlib")
30
(from-git url: sigil-repo package: "sigil-json")
31
(from-git url: sigil-repo package: "sigil-log")
32
(from-git url: sigil-repo package: "sigil-test"))
+27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
+28
(from-git url: "codeberg:sigil/sigil" package: "sigil-json" version: "^0.9.0"))
29
30
tasks: (list
31
(task
sigil.lockadded
@@ -0,0 +1,15 @@
+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-json"
+10
url: "codeberg:sigil/sigil"
+11
ref: "^0.9.0"
+12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
+13
package-selector: "sigil-json"
+14
version: "0.9.1")
+15
)