From 5adfe3015542907802ce2d2c2ae8320bd980f6e3 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Fri, 5 May 2017 16:47:17 +0100 Subject: [PATCH] Version 0.8.6. --- changelog.markdown | 21 +++++++++++++++++++++ src/nimblepkg/common.nim | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/changelog.markdown b/changelog.markdown index b6fdcff..ccc4d30 100644 --- a/changelog.markdown +++ b/changelog.markdown @@ -3,6 +3,27 @@ # Nimble changelog +## 0.8.6 - 05/05/2017 + +Yet another point release which includes various bug fixes and improvements. + +* Improves heuristic for finding Nim standard library to support choosenim + installations and adds ability to override it via ``NIM_LIB_PREFIX`` + environment variable. +* Implement ``--noColor`` option to remove color from the output. +* Fixes bug when ``srcDir`` contains trailing slash. +* Fixes failure when ``-d`` flag is passed to ``c`` command. +* Show raw output for certain commands. +* GitHub API token can now be specified via the ``NIMBLE_GITHUB_API_TOKEN`` + environment variable. +* GitHub API token is now stored in ``~/.nimble/api_token`` so that it + doesn't need to be specified each time. +* Fixes multiple flags not being passed in Nimble task. + +---- + +Full changelog: https://github.com/nim-lang/nimble/compare/v0.8.4...v0.8.6 + ## 0.8.4 - 29/01/2017 Another bug fix release which resolves problems related to stale nimscriptapi diff --git a/src/nimblepkg/common.nim b/src/nimblepkg/common.nim index 000e769..73a12eb 100644 --- a/src/nimblepkg/common.nim +++ b/src/nimblepkg/common.nim @@ -62,4 +62,4 @@ when not defined(nimscript): return (error, hint) const - nimbleVersion* = "0.8.5" + nimbleVersion* = "0.8.6"