From 14a694630459aa9908eeb64d2ef2d8d404bf2068 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 2 May 2020 14:10:56 +0100 Subject: [PATCH] Version 0.11.2 --- changelog.markdown | 14 ++++++++++++++ nimble.nimble | 2 +- src/nimblepkg/common.nim | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/changelog.markdown b/changelog.markdown index 92f1d319..44afe445 100644 --- a/changelog.markdown +++ b/changelog.markdown @@ -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 diff --git a/nimble.nimble b/nimble.nimble index 6cd7e9e7..7e08cc7f 100644 --- a/nimble.nimble +++ b/nimble.nimble @@ -1,6 +1,6 @@ # Package -version = "0.11.0" +version = "0.11.2" author = "Dominik Picheta" description = "Nim package manager." license = "BSD" diff --git a/src/nimblepkg/common.nim b/src/nimblepkg/common.nim index ab831758..afb1fe6d 100644 --- a/src/nimblepkg/common.nim +++ b/src/nimblepkg/common.nim @@ -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