Skip to content

Commit 48a8aa2

Browse files
authored
Merge pull request #6135 from haskell/bump-version-to-3.1
Bump version to 3.1.0.0
2 parents dc13803 + 91dc14c commit 48a8aa2

14 files changed

+25
-20
lines changed

Cabal/Cabal.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: >=1.10
22
name: Cabal
3-
version: 3.0.0.0
3+
version: 3.1.0.0
44
copyright: 2003-2019, Cabal Development Team (see AUTHORS file)
55
license: BSD3
66
license-file: LICENSE

Cabal/ChangeLog.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# 3.0.0.0 (current development version)
1+
# 3.1.0.0 (current development version)
2+
3+
# 3.0.0.0 TBD
24
* TODO
35
* Introduce set notation for `^>=` and `==` operators
46
([#5906](https://github.com/haskell/cabal/pull/5906)).

Cabal/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=3.0.0.0
1+
VERSION=3.1.0.0
22

33
#KIND=devel
44
KIND=rc

Cabal/doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
sys.path.insert(0, os.path.abspath('.'))
1414
import cabaldomain
1515

16-
version = "3.0.0.0"
16+
version = "3.1.0.0"
1717

1818
extensions = ['sphinx.ext.extlinks', 'sphinx.ext.todo']
1919

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
branches:
44
only:
55
- master
6+
- "3.0"
67
- "2.4"
78
- "2.2"
89
- "2.0"
@@ -47,7 +48,7 @@ build_script:
4748
- cabal %CABOPTS% new-test Cabal
4849
- appveyor-retry cabal %CABOPTS% new-build exe:cabal exe:cabal-tests --only-dependencies
4950
- cabal %CABOPTS% new-build exe:cabal
50-
- cabal %CABOPTS% new-run cabal-tests -- -j3 --with-cabal=dist-newstyle\build\x86_64-windows\ghc-8.0.2\cabal-install-3.0.0.0\x\cabal\build\cabal\cabal.exe
51+
- cabal %CABOPTS% new-run cabal-tests -- -j3 --with-cabal=dist-newstyle\build\x86_64-windows\ghc-8.0.2\cabal-install-3.1.0.0\x\cabal\build\cabal\cabal.exe
5152
- appveyor-retry cabal %CABOPTS% new-build cabal-install:tests --only-dependencies
5253
- cd cabal-install
5354
- cabal %CABOPTS% new-run cabal-install:memory-usage-tests

cabal-install/bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ NETWORK_URI_VER="2.6.1.0"; NETWORK_URI_VER_REGEXP="2\.6\.(0\.[2-9]|[1-9])"
224224
# >= 2.6.0.2 && < 2.7
225225
NETWORK_VER="2.7.0.0"; NETWORK_VER_REGEXP="2\.[0-7]\."
226226
# >= 2.0 && < 2.7
227-
CABAL_VER="3.0.0.0"; CABAL_VER_REGEXP="3\.0\.[0-9]"
227+
CABAL_VER="3.1.0.0"; CABAL_VER_REGEXP="3\.1\.[0-9]"
228228
# >= 2.5 && < 2.6
229229
TRANS_VER="0.5.5.0"; TRANS_VER_REGEXP="0\.[45]\."
230230
# >= 0.2.* && < 0.6

cabal-install/cabal-install.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Cabal-Version: >= 1.10
44
-- To update this file, edit 'cabal-install.cabal.pp' and run
55
-- 'make cabal-install-prod' in the project's root folder.
66
Name: cabal-install
7-
Version: 3.0.0.0
7+
Version: 3.1.0.0
88
Synopsis: The command-line interface for Cabal and Hackage.
99
Description:
1010
The \'cabal\' command-line program simplifies the process of managing
@@ -312,7 +312,7 @@ executable cabal
312312
base16-bytestring >= 0.1.1 && < 0.2,
313313
binary >= 0.7.3 && < 0.9,
314314
bytestring >= 0.10.6.0 && < 0.11,
315-
Cabal == 3.0.*,
315+
Cabal == 3.1.*,
316316
containers >= 0.5.6.2 && < 0.7,
317317
cryptohash-sha256 >= 0.11 && < 0.12,
318318
deepseq >= 1.4.1.1 && < 1.5,

cabal-install/cabal-install.cabal.pp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
-- To update this file, edit 'cabal-install.cabal.pp' and run
1111
-- 'make cabal-install-prod' in the project's root folder.
1212
Name: cabal-install
13-
Version: 3.0.0.0
13+
Version: 3.1.0.0
1414
#
1515
# NOTE: when updating build-depends, don't forget to update version regexps in bootstrap.sh.
1616
#
@@ -22,7 +22,7 @@
2222
base16-bytestring >= 0.1.1 && < 0.2,
2323
binary >= 0.7.3 && < 0.9,
2424
bytestring >= 0.10.6.0 && < 0.11,
25-
Cabal == 3.0.*,
25+
Cabal == 3.1.*,
2626
containers >= 0.5.6.2 && < 0.7,
2727
cryptohash-sha256 >= 0.11 && < 0.12,
2828
deepseq >= 1.4.1.1 && < 1.5,
@@ -475,7 +475,7 @@
475475
476476
cpp-options: -DMONOLITHIC
477477
build-depends:
478-
Cabal == 3.0.*,
478+
Cabal == 3.1.*,
479479
cabal-install-solver-dsl,
480480
QuickCheck >= 2.8.2,
481481
array,

cabal-install/changelog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
-*-change-log-*-
22

3-
3.0.0.0 (current development version)
3+
3.1.0.0 (current development version)
4+
5+
3.0.0.0 TBD
46
* `v2-repl` no longer changes directory to a randomized temporary folder
57
when used outside of a project. (#5544)
68
* `install-method` and `overwrite-policy` in `.cabal/config` now actually work. (#5942)

cabal-testsuite/cabal-testsuite.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: cabal-testsuite
3-
version: 3.0.0.0
3+
version: 3.1.0.0
44
copyright: 2003-2019, Cabal Development Team (see AUTHORS file)
55
license: BSD-3-Clause
66
license-file: LICENSE
@@ -28,7 +28,7 @@ common shared
2828
build-depends:
2929
, base >= 4.6 && <4.13
3030
-- this needs to match the in-tree lib:Cabal version
31-
, Cabal == 3.0.0.0
31+
, Cabal == 3.1.0.0
3232

3333
ghc-options: -Wall -fwarn-tabs
3434

@@ -102,5 +102,5 @@ executable setup
102102

103103
custom-setup
104104
-- we only depend on even stable releases of lib:Cabal
105-
setup-depends: Cabal == 2.2.* || == 2.4.* || == 3.0.*,
105+
setup-depends: Cabal == 2.2.* || == 2.4.* || == 3.0.* || ==3.1.*,
106106
base, filepath, directory

solver-benchmarks/solver-benchmarks.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: solver-benchmarks
2-
version: 3.0.0.0
2+
version: 3.1.0.0
33
copyright: 2003-2017, Cabal Development Team (see AUTHORS file)
44
license: BSD3
55
license-file: LICENSE

travis-common.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
set -e
22

33
HACKAGE_REPO_TOOL_VERSION="0.1.1.1"
4-
CABAL_VERSION="3.0.0.0"
5-
CABAL_INSTALL_VERSION="3.0.0.0"
4+
CABAL_VERSION="3.1.0.0"
5+
CABAL_INSTALL_VERSION="3.1.0.0"
66

77
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
88
ARCH="x86_64-linux"

travis-deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ deploy() {
88
(cd cabal-website && git checkout --track -b gh-pages origin/gh-pages)
99
rm -rf cabal-website/doc
1010
mkdir -p cabal-website/doc/html
11-
mv dist-newstyle/build/`uname -m`-$TRAVIS_OS_NAME/ghc-$GHCVER/Cabal-3.0.0.0/doc/html/Cabal \
11+
mv dist-newstyle/build/`uname -m`-$TRAVIS_OS_NAME/ghc-$GHCVER/Cabal-3.1.0.0/doc/html/Cabal \
1212
cabal-website/doc/html/Cabal
1313
(cd cabal-website && git add --all .)
1414
(cd cabal-website && \

validate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ timed $CABALPLAN --version
177177
#######################################################################
178178

179179
# NOTE: This should match cabal-testsuite version
180-
CABAL_VERSION="3.0.0.0"
180+
CABAL_VERSION="3.1.0.0"
181181

182182
if [ "$(uname)" = "Linux" ]; then
183183
ARCH="x86_64-linux"

0 commit comments

Comments
 (0)