Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion botan-bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## ?.?.?.? -- ????-??-??
## 0.1.0.0 -- 2025-09-17

* PATCH: update the changelog to change the release date of version 0.0.1.0 from
2024-02-05 to 2024-02-13.
Expand Down
4 changes: 2 additions & 2 deletions botan-bindings/botan-bindings.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: botan-bindings
version: 0.0.1.0
version: 0.1.0.0
synopsis: Raw Botan bindings
description:
Welcome to botan-bindings
Expand Down Expand Up @@ -39,7 +39,7 @@ source-repository this
type: git
location: https://github.com/haskellfoundation/botan
subdir: botan-bindings
tag: botan-bindings-0.0.1.0
tag: botan-bindings-0.1.0.0

flag pkg-config
default: True
Expand Down
2 changes: 1 addition & 1 deletion botan-low/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## ?.?.?.? -- ????-??-??
## 0.0.2.0 -- 2025-09-17

* PATCH: update the changelog to change the release date of version 0.0.1.0 from
2024-02-05 to 2024-02-13.
Expand Down
14 changes: 7 additions & 7 deletions botan-low/botan-low.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: botan-low
version: 0.0.1.0
version: 0.0.2.0
synopsis: Low-level Botan bindings
description:
Welcome to botan-low
Expand Down Expand Up @@ -51,7 +51,7 @@ source-repository this
type: git
location: https://github.com/haskellfoundation/botan
subdir: botan-low
tag: botan-low-0.0.1.0
tag: botan-low-0.0.2.0

flag XFFI
description: Enable experimental / upstream ffi support
Expand Down Expand Up @@ -117,11 +117,11 @@ library

autogen-modules: Paths_botan_low
build-depends:
, base >=4.16 && <4.22
, botan-bindings ==0.0.1.0
, bytestring >=0.11 && <0.13
, deepseq >=1.1 && <2
, text >=1.2 && <1.3 || >=2.0 && <2.2
, base >=4.16 && <4.22
, botan-bindings ^>=0.0 || ^>=0.1
, bytestring >=0.11 && <0.13
, deepseq >=1.1 && <2
, text >=1.2 && <1.3 || >=2.0 && <2.2

if flag(xffi)
-- Botan.Low.X509.OCSP
Expand Down
2 changes: 1 addition & 1 deletion botan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog

## 0.0.1 - 2024/02/19
## ?.?.?.? -- ????-??-??

Initial release.
12 changes: 6 additions & 6 deletions botan/botan.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ library

autogen-modules: Paths_botan
build-depends:
, base >=4.16 && <4.22
, botan-bindings ==0.0.1.0
, botan-low ==0.0.1.0
, bytestring >=0.11 && <0.13
, deepseq >=1.1 && <2
, text >=1.2 && <1.3 || >=2.0 && <2.2
, base >=4.16 && <4.22
, botan-bindings ^>=0.0 || ^>=0.1
, botan-low ^>=0.0
, bytestring >=0.11 && <0.13
, deepseq >=1.1 && <2
, text >=1.2 && <1.3 || >=2.0 && <2.2

if flag(mtl)
build-depends: mtl >=2.2 && <2.4
Expand Down
Loading