Skip to content

Commit

Permalink
Bump to 0.0.6b8
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulmutt committed May 30, 2017
1 parent 3c808b9 commit 5c67bec
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions ChangeLog.md
@@ -1,5 +1,15 @@
# Revision history for eta

## 0.0.6b8 -- 2017-05-30

### Eta
* `Java.Do` module is now available that lets you use do-notation for Java objects that satisfy a monad-like structure.
* The `getClass#` primop has been removed due to being ill-defined (performs type inspection). (#403)

### Etlas
* Eta binaries are installed if no `eta` is found on the PATH.
* Proxy settings now work (#387).

## 0.0.6b7 -- 2017-05-22

### Eta
Expand Down
4 changes: 2 additions & 2 deletions compiler/ETA/Main/Constants.hs
Expand Up @@ -18,8 +18,8 @@ cProjectVersion = "0.0.6b" ++ cProjectPatchLevel
cProjectVersionNumbers = "0.0.6." ++ cProjectPatchLevel
cProjectVersionInt = "6"
-- @BUILD_NUMBER@
cProjectPatchLevel = "7"
cProjectPatchLevel1 = "7"
cProjectPatchLevel = "8"
cProjectPatchLevel1 = "8"
cProjectPatchLevel2 = ""
cProjectHomeURL = "http://github.com/typelead/eta"
cProjectIssueReportURL = cProjectHomeURL ++ "/issues"
Expand Down
2 changes: 1 addition & 1 deletion shake/Build.hs
Expand Up @@ -37,7 +37,7 @@ getEtlasDir, getEtaRoot :: Action FilePath
getEtlasDir = liftIO $ getAppUserDataDirectory "etlas"
-- @VERSION_CHANGE@
-- @BUILD_NUMBER@
getEtaRoot = liftIO $ fmap (</> "0.0.6.7") $ getAppUserDataDirectory "eta"
getEtaRoot = liftIO $ fmap (</> "0.0.6.8") $ getAppUserDataDirectory "eta"

-- * Utility functions for filepath handling in the Action monad

Expand Down
2 changes: 1 addition & 1 deletion utils/eta-pkg/Main.hs
Expand Up @@ -129,7 +129,7 @@ main = do
-- @VERSION_CHANGE@
-- @BUILD_NUMBER@
myVersion :: String
myVersion = "0.0.6.7"
myVersion = "0.0.6.8"
-- -----------------------------------------------------------------------------
-- Command-line syntax

Expand Down
2 changes: 1 addition & 1 deletion utils/eta-pkg/eta-pkg.cabal
@@ -1,7 +1,7 @@
Name: eta-pkg
-- @VERSION_CHANGE@
-- @BUILD_NUMBER@
Version: 0.0.6.7
Version: 0.0.6.8
Copyright: XXX
License: BSD3
-- XXX License-File: LICENSE
Expand Down

0 comments on commit 5c67bec

Please sign in to comment.