diff --git a/changelog.markdown b/changelog.markdown index f40f584..f038524 100644 --- a/changelog.markdown +++ b/changelog.markdown @@ -1,5 +1,27 @@ + +[comment]: # (Before releasing, make sure to follow the steps in https://github.com/nim-lang/nimble/wiki/Releasing-a-new-version) + # Nimble changelog +## 0.7.10 - 09/10/2016 + +This release includes multiple bug fixes. + +* Reverted patch that breaks binary stubs in Git Bash on Windows. +* The ``nimscriptapi.nim`` file is now statically compiled into the binary. + This should fix the "could not find nimscriptapi.nim" errors. The file can + still be overriden by placing a file named ``nimscriptapi.nim`` inside a + ``nimblepkg`` directory that is placed alongside the Nimble binary, or + by a ``nimscriptapi.nim`` file inside ``~/.nimble/pkgs/nimble-ver/nimblepkg/``. + For more information see the + [code that looks for this file](https://github.com/nim-lang/nimble/blob/v0.7.10/src/nimblepkg/nimscriptsupport.nim#L176). +* Nim files can now be imported in .nimble nimscript files. (Issue [#186](https://github.com/nim-lang/nimble/issues/186)) +* Requiring a specific git commit hash no longer fails. (Issue [#129](https://github.com/nim-lang/nimble/issues/129)) + +---- + +Full changelog: https://github.com/nim-lang/nimble/compare/v0.7.8...v0.7.10 + ## 0.7.8 - 28/09/2016 This is a hotfix release which fixes crashes when Nimble (or Nim) is installed diff --git a/nimble.nimble b/nimble.nimble index 973b86a..99431ac 100644 --- a/nimble.nimble +++ b/nimble.nimble @@ -1,6 +1,7 @@ +import src/nimblepkg/common # Package -version = "0.7.8" +version = nimbleVersion author = "Dominik Picheta" description = "Nim package manager." license = "BSD" diff --git a/src/nimblepkg/common.nim b/src/nimblepkg/common.nim index 1348d58..417ff29 100644 --- a/src/nimblepkg/common.nim +++ b/src/nimblepkg/common.nim @@ -37,4 +37,4 @@ when not defined(nimscript): backend*: string const - nimbleVersion* = "0.7.8" + nimbleVersion* = "0.7.10"