Commit9ad641adRecorded3 Jul 2026Repositorysigil-fp

Bump to v0.9.2; require sigil ^0.17

Message

Modernize the manifest so sigil-fp builds on the current sigil line: add the sigil: ^0.17 compatibility field (the old manifest had none, so it wouldn't deps-install standalone) and bump the sigil-stdlib pin from ^0.9.0 to ^0.17. chain/-> and the fp utilities compile clean under 0.17.2. Also ignore .sigil/.

Changed
 .gitignore  | 1 +
 package.sgl | 5 +++--
 sigil.lock  | 6 +++---
 3 files changed, 7 insertions(+), 5 deletions(-)
Diff
.gitignoremodified
@@ -1 +1,2 @@
1
build/
+2
.sigil/
package.sglmodified
@@ -1,6 +1,7 @@
1
(package
2
name: "sigil-fp"
3
version: "0.9.1"
+3
version: "0.9.2"
+4
sigil: "^0.17"
5
description: "Functional programming utilities for Sigil"
6
url: "https://codeberg.org/sigil/sigil-fp"
7
license: "BSD-3-Clause"
@@ -11,4 +12,4 @@
12
(config name: 'release output-dir: "build/release" debug?: #f optimize: 2))
13
14
dependencies: (list
14
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")))
+15
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.17")))
sigil.lockmodified
@@ -2,8 +2,8 @@
2
(lock
3
(package name: "sigil-stdlib"
4
url: "codeberg:sigil/sigil"
5
ref: "^0.9.0"
6
sha: "41c29ee8ed6fd3bb1960a8ac993e0e1e8c0ca29a"
+5
ref: "^0.17"
+6
sha: "6a0ca644bfbdeb3ef63e32d319ff897d1dcdf136"
7
package-selector: "sigil-stdlib"
8
version: "0.9.1")
+8
version: "0.17.2")
9
)