Skip to content

Commit

Permalink
0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Apr 25, 2014
1 parent 0b141db commit e222536
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
@@ -1,15 +1,15 @@
Changelog
=========

0.7.1 (23-04-2014)
0.7.2 (25-04-2014)
------------------
* ``nv off`` works in both cases: ``nv on <env-name>`` and
``nv on --same-shell <env-name>``
* added plugin for [php](http://www.php.net/)
* added functions in common: ``nv_semver_get_(major|minor|patch|special)``
* added functions in common: ``nv_echo_err``
* added plugin for [php](http://www.php.net/)
* added plugin for prebuilt haskell
* improved shebangs
* improved shebangs (thanks to [Maciej Żok](https://github.com/macie))
* improved ``nv_get_plugin_version`` from ``common``: handle empty version
* improved command ``mk``: handle not existance plugins

Expand Down
2 changes: 1 addition & 1 deletion src/nv-commands/version
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

NV_VERSION=0.7.1
NV_VERSION=0.7.2

nv_cmd_default() {
echo "$(nv_cmd_name) $NV_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion tests/help.bats
Expand Up @@ -6,7 +6,7 @@ load test_helper
local usage_b=$(nv_bold "Usage")
run nv
assert_success
assert_equal "${lines[0]}" "nv 0.7.1"
assert_equal "${lines[0]}" "nv 0.7.2"
assert_equal "${lines[1]}" "${usage_b}: nv <subcommand>"
assert_equal "${lines[2]}" "Subcommands:"
}
2 changes: 1 addition & 1 deletion tests/version.bats
Expand Up @@ -5,5 +5,5 @@ load test_helper
@test "version: output version" {
run nv version
assert_success
assert_output "nv 0.7.1"
assert_output "nv 0.7.2"
}

0 comments on commit e222536

Please sign in to comment.