Skip to content

Commit

Permalink
Version 0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dom96 committed May 2, 2020
1 parent 6f2b1ac commit 14a6946
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@

# Nimble changelog

## 0.11.2 - 02/05/2019

This is a minor release containing just 15 commits. This release brings mostly
bug fixes with some minor new features:

- The `==` operator can now be used in version requirements.
- Handling of arguments for `nimble run` has been improved.
- The `nimble run` command can now be used without any arguments if the
package has only one binary specified.

----

Full changelog: https://github.com/nim-lang/nimble/compare/v0.11.0...v0.11.2

## 0.11.0 - 22/09/2019

This is a major release containing nearly 60 commits. Most changes are
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.11.0"
version = "0.11.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,7 +63,7 @@ when not defined(nimscript):
return (error, hint)

const
nimbleVersion* = "0.11.0"
nimbleVersion* = "0.11.2"

when not declared(initHashSet):
import sets
Expand Down

0 comments on commit 14a6946

Please sign in to comment.