Skip to content

Commit

Permalink
0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Apr 20, 2014
1 parent 1bb5f4f commit b7f9d54
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Changelog
=========

0.7.0 (21-04-2014)
------------------
* ``on``/``activate``/``use`` now works in a new shell by default
* ``on``/``activate``/``use``/``mk`` added option ``--same-shell``
* cache redesign: splited into sub-dirs {arc,src,build}
* added migration script for the new cache
* ``common``: added ``get_(build|arc|src)_path`` functions
* fixed commands ``rm-cache``/``ls-cache``
* fixed plugin: ``elixir``
* fixed plugin: ``julia``
* added ``nv_get_system`` into ``common``
* ``mk`` added ``--force`` option
* ``mk`` added reset for ``plug_state``
* ``mk`` added clean ``src`` folder after build (for saving disk space)
* added ``plug_build`` function for usage in plugins
* added ``plug_build_env`` function for usage in plugins
* renamed plugin ``go`` into ``go-prebuilt``
* added plugin ``node-prebuild``
* added plugin ``rust-prebuilt``
* added plugin ``elixir-prebuilt``
* improved bash autocompletion for commands ``on``/``activate``/``use``/``do``

0.6.2 (14-04-2014)
------------------
* ``zsh`` init support:
Expand Down
2 changes: 1 addition & 1 deletion src/nv-commands/version
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NV_VERSION=0.6.2
NV_VERSION=0.7.0

nv_cmd_default() {
echo "$(nv_cmd_name) $NV_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion tests/help.bats
Original file line number Diff line number Diff line change
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.6.2"
assert_equal "${lines[0]}" "nv 0.7.0"
assert_equal "${lines[1]}" "${usage_b}: nv <subcommand>"
assert_equal "${lines[2]}" "Subcommands:"
}
2 changes: 1 addition & 1 deletion tests/version.bats
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ load test_helper
@test "version: output version" {
run nv version
assert_success
assert_output "nv 0.6.2"
assert_output "nv 0.7.0"
}

0 comments on commit b7f9d54

Please sign in to comment.