Skip to content

Commit

Permalink
Release 0.7.0b2
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulmutt committed Jan 31, 2018
1 parent aefdb1a commit a6f28b5
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions compiler/ETA/Main/Constants.hs
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting-started.rst
Expand Up @@ -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
Expand Down
Expand Up @@ -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");
}
}
2 changes: 1 addition & 1 deletion utils/eta-pkg/Main.hs
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion utils/eta-pkg/eta-pkg.cabal
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion utils/nix/eta-pkg.nix
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion utils/nix/eta.nix
Expand Up @@ -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;
Expand Down

0 comments on commit a6f28b5

Please sign in to comment.