Version 0.7.10.

This commit is contained in:
Dominik Picheta 2016-10-09 15:20:31 +02:00
commit 1be5c052ae
3 changed files with 25 additions and 2 deletions

View file

@ -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

View file

@ -1,6 +1,7 @@
import src/nimblepkg/common
# Package
version = "0.7.8"
version = nimbleVersion
author = "Dominik Picheta"
description = "Nim package manager."
license = "BSD"

View file

@ -37,4 +37,4 @@ when not defined(nimscript):
backend*: string
const
nimbleVersion* = "0.7.8"
nimbleVersion* = "0.7.10"