Skip to content

Commit

Permalink
Version 0.7.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
dom96 committed Oct 9, 2016
1 parent 65dbd97 commit 1be5c05
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
22 changes: 22 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion nimble.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import src/nimblepkg/common
# Package

version = "0.7.8"
version = nimbleVersion
author = "Dominik Picheta"
description = "Nim package manager."
license = "BSD"
Expand Down
2 changes: 1 addition & 1 deletion src/nimblepkg/common.nim
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ when not defined(nimscript):
backend*: string

const
nimbleVersion* = "0.7.8"
nimbleVersion* = "0.7.10"

0 comments on commit 1be5c05

Please sign in to comment.