summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2010-04-20 15:11:48 -0700
committerAndre Arko <andre@arko.net>2010-04-20 15:11:48 -0700
commitc1761753bd5f91aaeadafc14367c8506dcd76b80 (patch)
treeeb93656d76a19917705aaa241e9d44392759e103
parent0ce100171e9863b0ba82dc004c772ae2dcd74757 (diff)
downloadbundler-0.9.22.tar.gz
Version 0.9.220.9.22
-rw-r--r--CHANGELOG.md19
-rw-r--r--lib/bundler/version.rb2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fdd716a17b..926fb50fd6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+## 0.9.22 (April 20, 2010)
+
+Features:
+
+ - cache command now prunes stale .gem files from vendor/cache
+ - init --gemspec command now generates development dependencies
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
+ - remove .gem files generated after installing a gem from a :path (#286)
+ - improve install/lock messaging (#284)
+
+Bugfixes:
+
+ - ignore cached gems that are for another platform (#288)
+ - install Windows gems that have no architecture set, like rcov (#277)
+ - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
+ - fix the `rake install` task
+ - add GemspecError so it can be raised without (further) error (#292)
+ - create a parent directory before cloning for git 1.5 compatibility (#285)
+
## 0.9.21 (April 16, 2010)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 713fe7aa63..11753d01fb 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -1,3 +1,3 @@
module Bundler
- VERSION = "0.9.21.pre"
+ VERSION = "0.9.22"
end \ No newline at end of file