Skip to content

Commit 6a2da56

Browse files
committed
Version 0.8.10.
1 parent cf1b837 commit 6a2da56

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

changelog.markdown

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
33

44
# Nimble changelog
55

6+
## 0.8.10 - 23/02/2018
7+
8+
The first release of 2018! Another fairly big release containing 40 commits.
9+
This release fixes many
10+
issues, with most being fixed by our brilliant contributors. Thanks a lot
11+
everyone!
12+
13+
One big new feature is the new support for multiple Nimble packages in a single
14+
Git/Hg repository. You can now specify ``?subdir=<dir>`` at the end of your
15+
repo's URL and Nimble will know to look in ``<dir>`` for your package.
16+
17+
* **Implemented support for multi-package repos.** See
18+
[#421](https://github.com/nim-lang/nimble/issues/421) for the relevant issue.
19+
* **Better error message when the user has an outdated stdlib version that confuses Nimble**
20+
* **The validity of a Nimble package can now be checked using the new ``check`` command**
21+
* Nimble no longer silently ignores an erroneous '@' in for example
22+
``nimble install compiler@``.
23+
* Issues with the ``nimble path`` command have been fixed.
24+
* The ``nimble publish`` command has been improved and stabilised.
25+
* Messages for the ``NIM_LIB_PREFIX`` env var have been improved.
26+
* ``before install`` is now called when packages are installed by their name.
27+
See [#280](https://github.com/nim-lang/nimble/issues/280).
28+
* Fixed issue with ``nimble init``. See [#446](https://github.com/nim-lang/nimble/issues/446).
29+
* Nimble now rejects [reserved names on Windows](https://github.com/nim-lang/nimble/commit/74856a87084b73451254555b2c20ad932cf84270).
30+
* The ``NIMBLE_DIR`` environment variable is now supported, in addition to the
31+
command line flag and config setting.
32+
* The ``init`` command has been improved significantly.
33+
34+
----
35+
36+
Full changelog: https://github.com/nim-lang/nimble/compare/v0.8.8...v0.8.10
37+
638
## 0.8.8 - 03/09/2017
739

840
This is a relatively big release containing 57 commits, with multiple new

src/nimblepkg/common.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ when not defined(nimscript):
6363
return (error, hint)
6464

6565
const
66-
nimbleVersion* = "0.8.8"
66+
nimbleVersion* = "0.8.10"

0 commit comments

Comments
 (0)