Skip to content

Commit

Permalink
Version 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
genotrance authored and dom96 committed Jun 3, 2019
1 parent 21616e3 commit d15c853
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion nimble.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.10.0"
version = "0.10.2"
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 @@ -63,4 +63,4 @@ when not defined(nimscript):
return (error, hint)

const
nimbleVersion* = "0.10.0"
nimbleVersion* = "0.10.2"

0 comments on commit d15c853

Please sign in to comment.