diff --git a/CHANGELOG.md b/CHANGELOG.md index 533652d..a499f8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # configuration-tools +## 0.7.0 (2022-06-22) + +The version bump is due to the update of the dependency on optparse-applicative, +which could imply breaking changes for users. + +* Support GHC-9.6 +* Require optparse-applicative >=0.18 +* Require prettyprinter package and drop dependency on deprecated ansi-wl-pprint + ## 0.6.1 (2021-10-12) * Support GHC-9.2 diff --git a/configuration-tools.cabal b/configuration-tools.cabal index 89527b0..e5f7f85 100644 --- a/configuration-tools.cabal +++ b/configuration-tools.cabal @@ -1,7 +1,7 @@ -cabal-version: 2.2 +cabal-version: 3.0 name: configuration-tools -version: 0.6.1 +version: 0.7.0 synopsis: Tools for specifying and parsing configurations description: Tools for specifying and parsing configurations @@ -33,12 +33,15 @@ author: Lars Kuhtz maintainer: Lars Kuhtz copyright: (c) 2019-2020 Colin Woodbury , - (c) 2015-2021 Lars Kuhtz , + (c) 2015-2023 Lars Kuhtz , (c) 2014-2015 AlephCloud, Inc. category: Configuration, Console build-type: Custom tested-with: - GHC==9.0.1 + , GHC==9.6 + , GHC==9.4 + , GHC==9.2 + , GHC==9.0.1 , GHC==8.10.7 , GHC==8.8.4 @@ -131,9 +134,9 @@ library , http-types >= 0.8 , monad-control >= 1.0 , tls >= 1.2 - , x509 >= 1.5 - , x509-system >= 1.5 - , x509-validation >= 1.5.1 + , crypton-x509 >= 1.5 + , crypton-x509-system >= 1.5 + , crypton-x509-validation >= 1.5.1 if flag(remote-configs) cpp-options: -DREMOTE_CONFIGS