Skip to content

Commit

Permalink
bootstrap.sh: Bump versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
23Skidoo committed Jul 21, 2017
1 parent 89ef359 commit 132cf21
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cabal-install/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,9 @@ PREFIX=${PREFIX:-${DEFAULT_PREFIX}}

# Versions of the packages to install.
# The version regex says what existing installed versions are ok.
PARSEC_VER="3.1.9"; PARSEC_VER_REGEXP="[3]\.[01]\."
PARSEC_VER="3.1.11"; PARSEC_VER_REGEXP="[3]\.[01]\."
# >= 3.0 && < 3.2
DEEPSEQ_VER="1.4.2.0"; DEEPSEQ_VER_REGEXP="1\.[1-9]\."
DEEPSEQ_VER="1.4.3.0"; DEEPSEQ_VER_REGEXP="1\.[1-9]\."
# >= 1.1 && < 2

case "$GHC_VER" in
Expand All @@ -221,30 +221,30 @@ case "$GHC_VER" in
;;
*)
# GHC >= 7.8
BINARY_VER="0.8.3.0"
BINARY_VER="0.8.5.1"
BINARY_VER_REGEXP="[0]\.[78]\." # >= 0.7 && < 0.9
;;
esac


TEXT_VER="1.2.2.1"; TEXT_VER_REGEXP="((1\.[012]\.)|(0\.([2-9]|(1[0-1]))\.))"
TEXT_VER="1.2.2.2"; TEXT_VER_REGEXP="((1\.[012]\.)|(0\.([2-9]|(1[0-1]))\.))"
# >= 0.2 && < 1.3
NETWORK_VER="2.6.3.1"; NETWORK_VER_REGEXP="2\.[0-6]\."
NETWORK_VER="2.6.3.2"; NETWORK_VER_REGEXP="2\.[0-6]\."
# >= 2.0 && < 2.7
NETWORK_URI_VER="2.6.1.0"; NETWORK_URI_VER_REGEXP="2\.6\."
# >= 2.6 && < 2.7
CABAL_VER="2.0.0.2"; CABAL_VER_REGEXP="2\.0\.[0-9]"
# >= 2.0 && < 2.1
TRANS_VER="0.5.2.0"; TRANS_VER_REGEXP="0\.[45]\."
TRANS_VER="0.5.4.0"; TRANS_VER_REGEXP="0\.[45]\."
# >= 0.2.* && < 0.6
MTL_VER="2.2.1"; MTL_VER_REGEXP="[2]\."
# >= 2.0 && < 3
HTTP_VER="4000.3.7"; HTTP_VER_REGEXP="4000\.(2\.([5-9]|1[0-9]|2[0-9])|3\.?)"
# >= 4000.2.5 < 4000.4
ZLIB_VER="0.6.1.2"; ZLIB_VER_REGEXP="(0\.5\.([3-9]|1[0-9])|0\.6)"
# >= 0.5.3 && <= 0.7
TIME_VER="1.7" TIME_VER_REGEXP="1\.[1-7]\.?"
# >= 1.1 && < 1.8
TIME_VER="1.8.0.2" TIME_VER_REGEXP="1\.[1-8]\.?"
# >= 1.1 && < 1.9
RANDOM_VER="1.1" RANDOM_VER_REGEXP="1\.[01]\.?"
# >= 1 && < 1.2
STM_VER="2.4.4.1"; STM_VER_REGEXP="2\."
Expand Down Expand Up @@ -274,7 +274,7 @@ HACKAGE_SECURITY_VER="0.5.2.2"; HACKAGE_SECURITY_VER_REGEXP="0\.5\.(2\.[2-9]|[3-
BYTESTRING_BUILDER_VER="0.10.8.1.0"; BYTESTRING_BUILDER_VER_REGEXP="0\.10\.?"
TAR_VER="0.5.0.3"; TAR_VER_REGEXP="0\.5\.([1-9]|1[0-9]|0\.[3-9]|0\.1[0-9])\.?"
# >= 0.5.0.3 && < 0.6
HASHABLE_VER="1.2.6.0"; HASHABLE_VER_REGEXP="1\."
HASHABLE_VER="1.2.6.1"; HASHABLE_VER_REGEXP="1\."
# 1.*

HACKAGE_URL="https://hackage.haskell.org/package"
Expand Down

0 comments on commit 132cf21

Please sign in to comment.