This commit is contained in:
Daniel Ziltener 2024-03-26 13:58:22 +01:00
parent 91ea498688
commit 99e8b1e8ed
Signed by: zilti
GPG Key ID: B38976E82C9DAE42
4 changed files with 5 additions and 1 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use guix chicken chicken-r7rs chicken-rfc3339 chicken-coops chicken-test chicken-salmonella chicken-salmonella-html-report

View File

@ -3,7 +3,7 @@
(synopsis "A Chicken binding to read TOML configuration files")
(category parsing)
(license "MIT")
(version "0.7")
(version "0.8")
(dependencies r7rs rfc3339 coops)
(test-dependencies test)

View File

@ -1,5 +1,6 @@
;; -*- Scheme -*-
(repo git "https://gitea.lyrion.ch/Chicken/toml.git")
(uri targz "https://gitea.lyrion.ch/Chicken/toml/archive/{egg-release}.tar.gz")
(release "0.8")
(release "0.7")
(release "0.6")

View File

@ -89,6 +89,8 @@ The repository of the C implementation being wrapped can be found at [[https://g
=== Version History
; 0.8 : updated the tomlc99 dependency
; 0.7 : fixed an issue with timestamp parsing
; 0.6 : first version of the wrapper