Skip to content

Commit

Permalink
rbenv 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sstephenson committed Dec 26, 2011
1 parent ee5ad02 commit b10bdb1
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 1 deletion.
18 changes: 18 additions & 0 deletions README.md
Expand Up @@ -314,6 +314,24 @@ tracker](https://github.com/sstephenson/rbenv/issues).

### <a name="section_4.1"></a> 4.1 Version History

**0.3.0** (December 25, 2011)

* Added an `rbenv root` command which prints the value of
`$RBENV_ROOT`, or the default root directory if it's unset.
* Clarified Zsh installation instructions in the readme.
* Removed some redundant code in `rbenv rehash`.
* Fixed an issue with calling `readlink` for paths with spaces.
* Changed Zsh initialization code to install completion hooks only for
interactive shells.
* Added preliminary support for ksh.
* `rbenv rehash` creates or removes shims only when necessary instead
of removing and re-creating all shims on each invocation.
* Fixed that `RBENV_DIR`, when specified, would be incorrectly
expanded to its parent directory.
* Removed the deprecated `set-default` and `set-local` commands.
* Added a `--no-rehash` option to `rbenv init` for skipping the
automatic rehash when opening a new shell.

**0.2.1** (October 1, 2011)

* Changed the `rbenv` command to ensure that `RBENV_DIR` is always an
Expand Down
18 changes: 18 additions & 0 deletions doc/README.mdtoc
Expand Up @@ -295,6 +295,24 @@ tracker](https://github.com/sstephenson/rbenv/issues).

### Version History ###

**0.3.0** (December 25, 2011)

* Added an `rbenv root` command which prints the value of
`$RBENV_ROOT`, or the default root directory if it's unset.
* Clarified Zsh installation instructions in the readme.
* Removed some redundant code in `rbenv rehash`.
* Fixed an issue with calling `readlink` for paths with spaces.
* Changed Zsh initialization code to install completion hooks only for
interactive shells.
* Added preliminary support for ksh.
* `rbenv rehash` creates or removes shims only when necessary instead
of removing and re-creating all shims on each invocation.
* Fixed that `RBENV_DIR`, when specified, would be incorrectly
expanded to its parent directory.
* Removed the deprecated `set-default` and `set-local` commands.
* Added a `--no-rehash` option to `rbenv init` for skipping the
automatic rehash when opening a new shell.

**0.2.1** (October 1, 2011)

* Changed the `rbenv` command to ensure that `RBENV_DIR` is always an
Expand Down
2 changes: 1 addition & 1 deletion libexec/rbenv
Expand Up @@ -60,7 +60,7 @@ shopt -u nullglob
command="$1"
case "$command" in
"" | "-h" | "--help" )
echo -e "rbenv 0.2.1\n$(rbenv-help)" >&2
echo -e "rbenv 0.3.0\n$(rbenv-help)" >&2
;;
* )
command_path="$(command -v "rbenv-$command" || true)"
Expand Down

0 comments on commit b10bdb1

Please sign in to comment.