diff --git a/CHANGELOG.md b/CHANGELOG.md index f7ecf6b97dc..81da60b5af2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,37 @@ +## 0.9.16 (April 3, 2010) + +Features: + + - exit gracefully on INT signal + - resolver output now indicates whether remote sources were checked + - print error instead of backtrace when exec cannot find a binary (#241) + +Bugfixes: + + - show, check, and open commands work again while locked (oops) + - show command for git gems + - outputs branch names other than master + - gets the correct sha from the checkout + - doesn't print sha twice if :ref is set + - report errors from bundler/setup.rb without backtraces (#243) + - fix Gem::Spec#git_version to not error on unloaded specs + - improve deprecation, Gemfile, and command error messages (#242) + ## 0.9.15 (April 1, 2010) Features: - - Use the env_file if possible instead of doing a runtime resolve - - Huge speedup when calling Bundler.setup while locked - - Ensures bundle exec is fast while locked - - Regenerates env_file if it was generated by an older version - - Update cached/packed gems when you update gems via bundle install + - use the env_file if possible instead of doing a runtime resolve + - huge speedup when calling Bundler.setup while locked + - ensures bundle exec is fast while locked + - regenerates env_file if it was generated by an older version + - update cached/packed gems when you update gems via bundle install Bugfixes: - - Prep for Rubygems 1.3.7 changes - - Install command now pulls git branches correctly (#211) - - Raise errors on invalid options in the Gemfile + - prep for Rubygems 1.3.7 changes + - install command now pulls git branches correctly (#211) + - raise errors on invalid options in the Gemfile ## 0.9.14 (March 30, 2010) diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb index 768ee7f4f42..62248662a1d 100644 --- a/lib/bundler/version.rb +++ b/lib/bundler/version.rb @@ -1,3 +1,3 @@ module Bundler - VERSION = "0.9.15" + VERSION = "0.9.16" end \ No newline at end of file