summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-09-13 16:09:21 -0700
committerAndre Arko <andre@arko.net>2011-09-13 16:09:21 -0700
commitb6e0fd31d419a28fd8f9b252462a838d268a6a58 (patch)
tree996b61637dbe12a99639168f9621a5f0df441ac9
parentbc92a7ba6df3d720e4f1726b6c421e5378c36d25 (diff)
downloadbundler-b6e0fd31d419a28fd8f9b252462a838d268a6a58.tar.gz
Version 1.0.19.rcv1.0.19.rc
-rw-r--r--CHANGELOG.md20
-rw-r--r--lib/bundler/version.rb2
2 files changed, 18 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b3ca587a2f..d7a907e2ba 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,18 @@
-## 1.0.18 (Aug 16, 2011)
+## 1.0.19.rc (September 13, 2011)
+
+Features:
+
+ - Compatability with Rubygems 1.8.10 installer changes
+ - Report gem installation failures clearly (@rwilcox, #1380)
+ - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
+
+Bugfixes:
+
+ - `exec` now works when the command contains 'exec'
+ - Only touch lock after changes on Windows (@robertwahler, #1358)
+ - Keep load paths when #setup is called multiple times (@radsaq, #1379)
+
+## 1.0.18 (August 16, 2011)
Bugfixes:
@@ -13,14 +27,14 @@ Features:
- Make fetch_specs faster (@zeha, #1294)
- Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
-## 1.0.17 (Aug 8, 2011)
+## 1.0.17 (August 8, 2011)
Bugfixes:
- Fix rake issues with rubygems 1.3.x (#1342)
- Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
-## 1.0.16 (Aug 8, 2011)
+## 1.0.16 (August 8, 2011)
Features:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index e2303c160e..f09ba8d53a 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -2,5 +2,5 @@ module Bundler
# We're doing this because we might write tests that deal
# with other versions of bundler and we are unsure how to
# handle this better.
- VERSION = "1.0.18" unless defined?(::Bundler::VERSION)
+ VERSION = "1.0.19.rc" unless defined?(::Bundler::VERSION)
end