From af2295e62cc0b0ad7e337b4625d6c9b2ef2cbf62 Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Sun, 20 Jun 2021 20:52:00 +0530 Subject: [PATCH 1/2] Update dependency version bounds To make it build with nix 21.05. --- codex.cabal | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/codex.cabal b/codex.cabal index d769889..12f0141 100644 --- a/codex.cabal +++ b/codex.cabal @@ -34,16 +34,16 @@ library build-depends: ascii-progress >= 0.3 , base >= 4.11 && < 5 - , bytestring >= 0.10.0.2 && < 0.11 + , bytestring >= 0.10.0.2 && < 0.12 , conduit >= 1.3.0 - , Cabal >= 3.0 && < 3.1 + , Cabal >= 3.0 && < 3.5 , containers >= 0.5.0.0 && < 0.7 - , cryptonite >= 0.21 && < 0.27 + , cryptonite >= 0.21 && < 0.30 , directory >= 1.2.5.0 && < 1.4 , filepath >= 1.3.0.1 && < 1.5 , hackage-db >= 2 && < 3 - , http-client >= 0.4 && <= 0.6.5 - , memory >= 0.13 && < 0.16 + , http-client >= 0.4 && <= 0.8 + , memory >= 0.13 && < 0.17 , process >= 1.2.3 && < 1.7 , tar >= 0.4.0.1 && < 0.6 , text >= 1.1.1.3 && < 1.3 From 8ff2e146e4f0c5b2c34917e344885a79dca1e325 Mon Sep 17 00:00:00 2001 From: Harendra Kumar Date: Sun, 20 Jun 2021 22:35:11 +0530 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c15bf4b..b3d6b75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ When editing this file, please include a link to the PR and/or issue for the change. --> +## Unreleased + +- Bump dependency version bounds [#106](https://github.com/aloiscochard/codex/pull/106) + ## 0.6.0.0 - Bump `base` lower bound to indicate GHC 7.10 as minimum supported version.