summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--lib/bundler/version.rb2
2 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2f351a13e3..340d65ebe1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,11 +2,20 @@
Features:
- -
+ - fetch submodules for git sources
+ - limit the bundled version of bundler to the same as the one installing
+ - force relative paths in git gemspecs to avoid raising Gem::NameTooLong
+ - serialize GemCache sources correctly, so locking works
+ - raise Bundler::GemNotFound instead of calling exit! inside library code
+ - Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
Bugfixes:
- -
+ - don't try to regenerate environment.rb if it is read-only
+ - prune outdated gems with the platform "ruby"
+ - prune cache without errors when there are directories or non-gem files
+ - don't re-write environment.rb if running after it has been loaded
+ - do not monkeypatch Specification#load_paths twice when inside a bundle
## 0.9.23 (April 20, 2010)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 1a0043bd48..5d9e23a704 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -1,3 +1,3 @@
module Bundler
- VERSION = "0.9.23"
+ VERSION = "0.9.24"
end \ No newline at end of file