From f179de4ec35bceabfbafedbe6beae6e99339b3f3 Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Wed, 19 Dec 2012 23:43:25 -0800 Subject: [PATCH] Version 1.3.0.pre.3 with changelog --- CHANGELOG.md | 10 +++++++++- lib/bundler/version.rb | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ddf5101edb..603c1b20d59 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 eb0105e530b..ccd46b28ee5 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