summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <me@colby.fyi>2018-11-04 11:48:30 +1100
committerColby Swandale <me@colby.fyi>2018-11-09 23:30:59 +1100
commit1ed33414488f358c946bcca44234641f8a4847d1 (patch)
tree14cc2d3659a829d69afe4e1ef36410856ecb07e2
parent36687280a7f0d8455ffbffb0339452291b5bc10e (diff)
downloadbundler-1ed33414488f358c946bcca44234641f8a4847d1.tar.gz
Version 2.0.0.pre.1 with changelog
-rw-r--r--CHANGELOG.md10
-rw-r--r--lib/bundler/version.rb2
2 files changed, 11 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33b9528d31..9ad7e06612 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 2.0.0.pre.1 (2018-11-09)
+
+Breaking Changes:
+
+ - Dropped support for versions of Ruby < 2.3
+ - Dropped support for version of RubyGems < 2.5
+ - Moved error messages from STDOUT to STDERR
+
+Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
+
## 1.17.1 (2018-10-25)
- Convert `Pathname`s to `String`s before sorting them, fixing #6760 and #6758 ([#6761](https://github.com/bundler/bundler/pull/6761), @alexggordon)
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index 02ec96adc9..25a72b272e 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -7,7 +7,7 @@ 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.17.1" unless defined?(::Bundler::VERSION)
+ VERSION = "2.0.0.pre.1" unless defined?(::Bundler::VERSION)
def self.overwrite_loaded_gem_version
begin