summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-04-21 15:51:25 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-04-21 15:51:25 -0500
commitd40efa845428cabfcdfcea7e4a14ed8ffb3e7639 (patch)
treea4eabac73be2e756390f631f8e6cdc04205a10d9
parentbf117643dd46fb0e84e770f183a2030534c0923d (diff)
downloadbundler-d40efa845428cabfcdfcea7e4a14ed8ffb3e7639.tar.gz
Version 1.12.0.rc.4 with changelogv1.12.0.rc.4
-rw-r--r--CHANGELOG.md6
-rw-r--r--lib/bundler/version.rb2
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad8ee0dad0..2de97e77c5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 1.12.0.rc.4 (2016-04-21)
+
+Bugfixes:
+
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
+
## 1.12.0.rc.3 (2016-04-19)
Bugfixes:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 9020abce78..7160a0fb2d 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -7,5 +7,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.12.0.rc.3" unless defined?(::Bundler::VERSION)
+ VERSION = "1.12.0.rc.4" unless defined?(::Bundler::VERSION)
end