Commit8bd53036Recorded26 Apr 2026Repositorysigil-caldav

sigil-caldav v0.10.0: refresh for sigil 0.14 ecosystem

Message

Adopted sigil: ^0.14 (sigil-stdlib auto-derived). Rewired three monorepo-scoped library deps to their canonical extracted URLs at ^0.14.0: sigil-http, sigil-crypto, plus sigil-sxml bumped from ^0.9.0 to ^0.14.0.

Drops the explicit sigil-stdlib declaration (auto-derive picks it up via sigil: ^0.14). Removes CHANGELOG.md per the no-CHANGELOG convention for libraries; adds .sigil/ to .gitignore.

The previous bump attempt on 2026-04-26 was blocked by two sigil-stdlib regressions (IANA tz resolution + time-utc-offset-at DST handling). Both fixed in sigil-lang v0.14.4; all 5 ical-datetime tests that gated this release now pass.

Changed
 .gitignore   |  1 +
 CHANGELOG.md |  5 -----
 package.sgl  | 10 +++++-----
 sigil.lock   | 42 +++++++++++++++++++++++++-----------------
 4 files changed, 31 insertions(+), 27 deletions(-)
Diff
.gitignoremodified
@@ -1 +1,2 @@
1
build/
+2
.sigil/
CHANGELOG.mddeleted
@@ -1,5 +0,0 @@
1
# sigil-caldav
2
3
## 0.8.0
4
5
- Initial release with CalDAV client, iCalendar parsing/generation, calendar and event operations
package.sglmodified
@@ -5,7 +5,8 @@
5
6
(package
7
name: "sigil-caldav"
8
version: "0.9.1"
+8
version: "0.10.0"
+9
sigil: "^0.14"
10
description: "CalDAV calendar client library for Sigil"
11
url: "https://codeberg.org/sigil/sigil-caldav"
12
license: "BSD-3-Clause"
@@ -24,10 +25,9 @@
25
optimize: 2))
26
27
dependencies: (list
27
(from-git url: "codeberg:sigil/sigil" package: "sigil-stdlib" version: "^0.9.0")
28
(from-git url: "codeberg:sigil/sigil" package: "sigil-http" version: "^0.9.0")
29
(from-git url: "codeberg:sigil/sigil-sxml" version: "^0.9.0")
30
(from-git url: "codeberg:sigil/sigil" package: "sigil-crypto" version: "^0.9.0"))
+28
(from-git url: "codeberg:sigil/sigil-http" version: "^0.14.0")
+29
(from-git url: "codeberg:sigil/sigil-sxml" version: "^0.14.0")
+30
(from-git url: "codeberg:sigil/sigil-crypto" version: "^0.14.0"))
31
32
tasks: (list
33
(task
sigil.lockmodified
@@ -1,26 +1,34 @@
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"
+4
url: "codeberg:sigil/sigil-lang"
+5
ref: "^0.14"
+6
sha: "ff67dfe2033e03cb3d71ba3d801418ba0729094f"
7
package-selector: "sigil-stdlib"
8
version: "0.9.1")
+8
version: "0.14.4")
9
(package name: "sigil-http"
10
url: "codeberg:sigil/sigil"
11
ref: "^0.9.0"
12
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
13
package-selector: "sigil-http"
14
version: "0.9.1")
+10
url: "codeberg:sigil/sigil-http"
+11
ref: "^0.14.0"
+12
sha: "0750960430cd830a46b1b18fb1f07bc7436ca9b2"
+13
version: "0.14.1")
14
(package name: "sigil-sxml"
15
url: "codeberg:sigil/sigil-sxml"
17
ref: "^0.9.0"
18
sha: "081b6337c28d2ae55cd7658002cd6bc5e79ea07b"
19
version: "0.9.1")
+16
ref: "^0.14.0"
+17
sha: "a33eb522bfd485dcc490c8db5ea599d7215027ff"
+18
version: "0.14.0")
19
(package name: "sigil-crypto"
21
url: "codeberg:sigil/sigil"
22
ref: "^0.9.0"
23
sha: "54f66e8ec446b65b75ab6f12454d2c0aa269f2c0"
24
package-selector: "sigil-crypto"
25
version: "0.9.1")
+20
url: "codeberg:sigil/sigil-crypto"
+21
ref: "^0.14.0"
+22
sha: "602e5f57265fc07c49f398ebfdfa3fe85cbe370b"
+23
version: "0.14.1")
+24
(package name: "sigil-socket"
+25
url: "codeberg:sigil/sigil-socket"
+26
ref: "^0.14.0"
+27
sha: "cfc8005ebf26b8234f933be11514a78b96c325e0"
+28
version: "0.14.0")
+29
(package name: "sigil-tls"
+30
url: "codeberg:sigil/sigil-tls"
+31
ref: "^0.14.0"
+32
sha: "20bb81ce7af3ac39cfbb4a6b054d1cda1f0304c7"
+33
version: "0.14.0")
34
)