summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--lib/bundler/version.rb2
2 files changed, 8 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a28cefc682..7be1ff6d12 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+## 1.3.4 (15 March 2103)
+
+Bugfixes:
+
+ - load YAML on Rubygems version that define module YAML
+ - fix regression that broke --without on ruby 1.8.7
+
## 1.3.3 (13 March 2013)
Features:
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 91e350485b..7ff03208e0 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.3" unless defined?(::Bundler::VERSION)
+ VERSION = "1.3.4" unless defined?(::Bundler::VERSION)
end