Version 0.7.10.
This commit is contained in:
parent
65dbd97269
commit
1be5c052ae
3 changed files with 25 additions and 2 deletions
|
|
@ -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
|
# 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
|
## 0.7.8 - 28/09/2016
|
||||||
|
|
||||||
This is a hotfix release which fixes crashes when Nimble (or Nim) is installed
|
This is a hotfix release which fixes crashes when Nimble (or Nim) is installed
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
|
import src/nimblepkg/common
|
||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.7.8"
|
version = nimbleVersion
|
||||||
author = "Dominik Picheta"
|
author = "Dominik Picheta"
|
||||||
description = "Nim package manager."
|
description = "Nim package manager."
|
||||||
license = "BSD"
|
license = "BSD"
|
||||||
|
|
|
||||||
|
|
@ -37,4 +37,4 @@ when not defined(nimscript):
|
||||||
backend*: string
|
backend*: string
|
||||||
|
|
||||||
const
|
const
|
||||||
nimbleVersion* = "0.7.8"
|
nimbleVersion* = "0.7.10"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue