diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c5b0a..b1e29da 100644 --- a/CHANGELOG.md +++ b/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 `` and ``nv on --same-shell `` -* 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 diff --git a/src/nv-commands/version b/src/nv-commands/version index 21c75d5..46237e1 100644 --- a/src/nv-commands/version +++ b/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" diff --git a/tests/help.bats b/tests/help.bats index 28c5f11..ec3327f 100644 --- a/tests/help.bats +++ b/tests/help.bats @@ -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 " assert_equal "${lines[2]}" "Subcommands:" } diff --git a/tests/version.bats b/tests/version.bats index e124420..eb2ca82 100644 --- a/tests/version.bats +++ b/tests/version.bats @@ -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" }