summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2012-12-19 23:43:25 -0800
committerAndre Arko <andre@arko.net>2012-12-19 23:43:25 -0800
commitf179de4ec35bceabfbafedbe6beae6e99339b3f3 (patch)
tree53de996a60b5d0476ed611f6e7d50731d158e659
parent3d68743c84c1843e4ece4cd6989ee1172de7ede8 (diff)
downloadbundler-f179de4ec35bceabfbafedbe6beae6e99339b3f3.tar.gz
Version 1.3.0.pre.3 with changelog
-rw-r--r--CHANGELOG.md10
-rw-r--r--lib/bundler/version.rb2
2 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1ddf5101ed..603c1b20d5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,16 @@
## 1.3.0.pre.3
+Features:
+
+ - pushing gems during `rake release` can be disabled (@trans)
+ - installing gems with `rake install` is much faster (@utkarshkukreti)
+
Bugfixes:
- - `outdated` returns non-zero exit status if outdated gems found (@rohit, #2021)
+ - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
+ - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
+ - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
+ - namespaced gems no longer generate a superfluous directory (@banyan)
## 1.3.0.pre.2 (Dec 9, 2012)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index eb0105e530..ccd46b28ee 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.3.0.pre.2" unless defined?(::Bundler::VERSION)
+ VERSION = "1.3.0.pre.3" unless defined?(::Bundler::VERSION)
end