summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-05-02 23:15:15 -0700
committerAndre Arko <andre@arko.net>2015-05-03 00:30:27 -0700
commit84c32d00d59bb90a95eef72422f52253835aa1a5 (patch)
tree2c2a44e7f11ea6cc3c8d76cc8dce8633e6a3d1ad
parent5dcad9e75e392c58d58d68d6180dbd8c098b6594 (diff)
downloadbundler-84c32d00d59bb90a95eef72422f52253835aa1a5.tar.gz
Version 1.9.6 with changelogv1.9.6
-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 677bd1153b..d141f60586 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,8 +1,16 @@
+## 1.9.6 (2015-05-02)
+
+Bugfixes:
+
+ - support RubyGems versions above 2.4.6 (@tenderlove, @segiddins, @indirect)
+ - allow creating gems with names containing two dashes (#3483, @janlelis)
+ - allow creating gems with names extending constants (#3603, @amatsuda)
+
## 1.9.5 (2015-04-29)
Bugfixes:
- - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
+ - respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
## 1.9.4 (2015-04-13)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 7d473a297f..b415f650c2 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.9.5" unless defined?(::Bundler::VERSION)
+ VERSION = "1.9.6" unless defined?(::Bundler::VERSION)
end