diff --git a/compiler/ETA/Main/Constants.hs b/compiler/ETA/Main/Constants.hs index 4f5b9f67..fa8c6a71 100644 --- a/compiler/ETA/Main/Constants.hs +++ b/compiler/ETA/Main/Constants.hs @@ -19,8 +19,8 @@ cProjectVersionNumbers = "0.7.0." ++ cProjectPatchLevel cProjectVersionInt = "70" -- @BUILD_NUMBER@ -- @BUILD_NUMBER_INTERNAL@ -cProjectPatchLevel = "1" -cProjectPatchLevel1 = "1" +cProjectPatchLevel = "2" +cProjectPatchLevel1 = "2" cProjectPatchLevel2 = "" cProjectHomeURL = "http://github.com/typelead/eta" cProjectIssueReportURL = cProjectHomeURL ++ "/issues" diff --git a/docs/source/conf.py b/docs/source/conf.py index d44b9aa2..721e086a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,7 @@ version = u'0.7.0' # The full version, including alpha/beta/rc tags. # @BUILD_NUMBER@ -release = u'0.7.0b1' +release = u'0.7.0b2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/getting-started.rst b/docs/source/getting-started.rst index 0f9bbb05..845cc188 100644 --- a/docs/source/getting-started.rst +++ b/docs/source/getting-started.rst @@ -21,7 +21,7 @@ Method 1: Binary Installation .. @VERSION_CHANGE@ .. @BUILD_NUMBER@ -Eta Version: 0.7.0b1 +Eta Version: 0.7.0b2 .. @VERSION@ Etlas Version: 1.1.0.0 diff --git a/rts/src/main/java/eta/runtime/exception/RuntimeInternalError.java b/rts/src/main/java/eta/runtime/exception/RuntimeInternalError.java index 9fc9c8ea..cd0f8de6 100644 --- a/rts/src/main/java/eta/runtime/exception/RuntimeInternalError.java +++ b/rts/src/main/java/eta/runtime/exception/RuntimeInternalError.java @@ -6,6 +6,6 @@ public RuntimeInternalError(String message) { // @VERSION_CHANGE@ // @BUILD_NUMBER@ // @BUILD_NUMBER_INTERNAL@ - super("\n[Eta v0.7.0b1] " + message + "\nPlease report this as a bug: https://github.com/typelead/eta/issues"); + super("\n[Eta v0.7.0b2] " + message + "\nPlease report this as a bug: https://github.com/typelead/eta/issues"); } } diff --git a/utils/eta-pkg/Main.hs b/utils/eta-pkg/Main.hs index 761a0edd..a7972c05 100644 --- a/utils/eta-pkg/Main.hs +++ b/utils/eta-pkg/Main.hs @@ -100,7 +100,7 @@ main = do -- @BUILD_NUMBER@ -- @BUILD_NUMBER_INTERNAL@ myVersion :: String -myVersion = "0.7.0.1" +myVersion = "0.7.0.2" -- ----------------------------------------------------------------------------- -- Command-line syntax diff --git a/utils/eta-pkg/eta-pkg.cabal b/utils/eta-pkg/eta-pkg.cabal index b1e6c29a..d36a5175 100644 --- a/utils/eta-pkg/eta-pkg.cabal +++ b/utils/eta-pkg/eta-pkg.cabal @@ -2,7 +2,7 @@ name: eta-pkg -- @VERSION_CHANGE@ -- @BUILD_NUMBER@ -- @BUILD_NUMBER_INTERNAL@ -version: 0.7.0.1 +version: 0.7.0.2 copyright: XXX license: BSD3 -- XXX License-File: LICENSE diff --git a/utils/nix/eta-pkg.nix b/utils/nix/eta-pkg.nix index ac138ad5..27051519 100644 --- a/utils/nix/eta-pkg.nix +++ b/utils/nix/eta-pkg.nix @@ -6,7 +6,7 @@ mkDerivation { # @VERSION_CHANGE@ # @BUILD_NUMBER@ # @BUILD_NUMBER_INTERNAL@ - version = "0.7.0.1"; + version = "0.7.0.2"; src = ../../utils/eta-pkg; isLibrary = false; isExecutable = true; diff --git a/utils/nix/eta.nix b/utils/nix/eta.nix index bb297900..302cfda5 100644 --- a/utils/nix/eta.nix +++ b/utils/nix/eta.nix @@ -9,7 +9,7 @@ mkDerivation { # @VERSION_CHANGE@ # @BUILD_NUMBER@ # @BUILD_NUMBER_INTERNAL@ - version = "0.7.0.1"; + version = "0.7.0.2"; src = ../..; isLibrary = true; isExecutable = true;