Skip to content

Commit a6f28b5

Browse files
committed
Release 0.7.0b2
1 parent aefdb1a commit a6f28b5

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

Diff for: compiler/ETA/Main/Constants.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ cProjectVersionNumbers = "0.7.0." ++ cProjectPatchLevel
1919
cProjectVersionInt = "70"
2020
-- @BUILD_NUMBER@
2121
-- @BUILD_NUMBER_INTERNAL@
22-
cProjectPatchLevel = "1"
23-
cProjectPatchLevel1 = "1"
22+
cProjectPatchLevel = "2"
23+
cProjectPatchLevel1 = "2"
2424
cProjectPatchLevel2 = ""
2525
cProjectHomeURL = "http://github.com/typelead/eta"
2626
cProjectIssueReportURL = cProjectHomeURL ++ "/issues"

Diff for: docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
version = u'0.7.0'
6363
# The full version, including alpha/beta/rc tags.
6464
# @BUILD_NUMBER@
65-
release = u'0.7.0b1'
65+
release = u'0.7.0b2'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

Diff for: docs/source/getting-started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Method 1: Binary Installation
2121

2222
.. @VERSION_CHANGE@
2323
.. @BUILD_NUMBER@
24-
Eta Version: 0.7.0b1
24+
Eta Version: 0.7.0b2
2525

2626
.. @VERSION@
2727
Etlas Version: 1.1.0.0

Diff for: rts/src/main/java/eta/runtime/exception/RuntimeInternalError.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ public RuntimeInternalError(String message) {
66
// @VERSION_CHANGE@
77
// @BUILD_NUMBER@
88
// @BUILD_NUMBER_INTERNAL@
9-
super("\n[Eta v0.7.0b1] " + message + "\nPlease report this as a bug: https://github.com/typelead/eta/issues");
9+
super("\n[Eta v0.7.0b2] " + message + "\nPlease report this as a bug: https://github.com/typelead/eta/issues");
1010
}
1111
}

Diff for: utils/eta-pkg/Main.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ main = do
100100
-- @BUILD_NUMBER@
101101
-- @BUILD_NUMBER_INTERNAL@
102102
myVersion :: String
103-
myVersion = "0.7.0.1"
103+
myVersion = "0.7.0.2"
104104
-- -----------------------------------------------------------------------------
105105
-- Command-line syntax
106106

Diff for: utils/eta-pkg/eta-pkg.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: eta-pkg
22
-- @VERSION_CHANGE@
33
-- @BUILD_NUMBER@
44
-- @BUILD_NUMBER_INTERNAL@
5-
version: 0.7.0.1
5+
version: 0.7.0.2
66
copyright: XXX
77
license: BSD3
88
-- XXX License-File: LICENSE

Diff for: utils/nix/eta-pkg.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ mkDerivation {
66
# @VERSION_CHANGE@
77
# @BUILD_NUMBER@
88
# @BUILD_NUMBER_INTERNAL@
9-
version = "0.7.0.1";
9+
version = "0.7.0.2";
1010
src = ../../utils/eta-pkg;
1111
isLibrary = false;
1212
isExecutable = true;

Diff for: utils/nix/eta.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mkDerivation {
99
# @VERSION_CHANGE@
1010
# @BUILD_NUMBER@
1111
# @BUILD_NUMBER_INTERNAL@
12-
version = "0.7.0.1";
12+
version = "0.7.0.2";
1313
src = ../..;
1414
isLibrary = true;
1515
isExecutable = true;

0 commit comments

Comments
 (0)