From d15c8530cb7480ce39ffa85a2dd9819d2d4fc645 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Mon, 3 Jun 2019 13:56:49 -0500 Subject: [PATCH] Version 0.10.2 --- changelog.markdown | 18 ++++++++++++++++++ nimble.nimble | 2 +- src/nimblepkg/common.nim | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/changelog.markdown b/changelog.markdown index 1f417e6..c8ae9cf 100644 --- a/changelog.markdown +++ b/changelog.markdown @@ -3,6 +3,24 @@ # Nimble changelog +## 0.10.2 - 03/06/2019 + +This is a small release which avoids object variant changes that are now +treated as runtime errors (Nim #1286). It also adds support for `backend` +selection during `nimble init`. + +Multiple bug fixes are also included: +- Fixed an issue where failing tasks were not returning a non-zero return + value (#655). +- Error out if `bin` is a Nim source file (#597). +- Fixed an issue where nimble task would not run if file of same name exists. +- Fixed an issue that prevented multiple instances of nimble from running on + the same package. + +---- + +Full changelog: https://github.com/nim-lang/nimble/compare/v0.10.0...v0.10.2 + ## 0.10.0 - 27/05/2019 Nimble now uses the Nim compiler directly via `nim e` to execute nimble diff --git a/nimble.nimble b/nimble.nimble index 8de754f..5344094 100644 --- a/nimble.nimble +++ b/nimble.nimble @@ -1,6 +1,6 @@ # Package -version = "0.10.0" +version = "0.10.2" author = "Dominik Picheta" description = "Nim package manager." license = "BSD" diff --git a/src/nimblepkg/common.nim b/src/nimblepkg/common.nim index 676a2ff..abb8094 100644 --- a/src/nimblepkg/common.nim +++ b/src/nimblepkg/common.nim @@ -63,4 +63,4 @@ when not defined(nimscript): return (error, hint) const - nimbleVersion* = "0.10.0" + nimbleVersion* = "0.10.2"