summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2013-01-22 01:18:12 -0800
committerAndre Arko <andre@arko.net>2013-01-22 01:18:12 -0800
commitbb9f90ee0f00a3e8f40edba885c4d5d4d5bcdb64 (patch)
treeb210236a2d05c2c3e0f50b1255a1ee9b1bb488ac
parente4dd369e4a0b16f3a03f8bac3a64d50d6fe2b23f (diff)
downloadbundler-bb9f90ee0f00a3e8f40edba885c4d5d4d5bcdb64.tar.gz
Version 1.3.0.pre.6 with changelogv1.3.0.pre.6
-rw-r--r--CHANGELOG.md16
-rw-r--r--lib/bundler/version.rb2
2 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58fdbc7188..ac03d300d1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,24 @@
+## 1.3.0.pre.6 (January 22, 2013)
+
+Features:
+
+ - `binstubs` lists child gem bins if a gem has no binstubs
+ - `bundle gem --edit` will open the new gemspec (@ndbroadbent)
+ - `bundle gem --test rspec` now makes working tests (@tricknotes)
+ - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
+
+Bugfixes:
+
+ - don't overwrite custom binstubs during `install --binstubs`
+ - don't throw an exception if `binstubs` gem doesn't exist
+ - `bundle config` now works in directories without a Gemfile
+
## 1.3.0.pre.5 (Jan 9, 2013)
Features:
- make `--standalone` require lines ruby engine/version agnostic
- add `--dry-run` to `bundle clean` (@wfarr, #2237)
- - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 0f0ab62033..4a495be550 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.5" unless defined?(::Bundler::VERSION)
+ VERSION = "1.3.0.pre.6" unless defined?(::Bundler::VERSION)
end