summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2020-01-01 23:34:14 +0000
committerBundlerbot <bot@bundler.io>2020-01-01 23:34:14 +0000
commite70d0f3d02c8c084b61969e71d1fa28a15a6d0ca (patch)
treeeb9f71a6221d727427d2bf65ccb07c38f711855c
parentc93740f7d05468d053f6aab7d6c88cb0319f96ab (diff)
parent9bc88192ec28fe62d52832e9e7e41b374fe67eba (diff)
downloadbundler-e70d0f3d02c8c084b61969e71d1fa28a15a6d0ca.tar.gz
Merge #7534
7534: Set master's version to 2.2.0.dev r=deivid-rodriguez a=deivid-rodriguez ### What was the end-user problem that led to this PR? The problem was that master version is set to the latest patch level release, but the code in master doesn't really match the latest patch level release. ### What is your fix for the problem, implemented in this PR? My fix is to use 2.2.0.dev to name master's development version. Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
-rw-r--r--lib/bundler/version.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/version.rb b/lib/bundler/version.rb
index b63e39b8d2..39789b5913 100644
--- a/lib/bundler/version.rb
+++ b/lib/bundler/version.rb
@@ -1,7 +1,7 @@
# frozen_string_literal: false
module Bundler
- VERSION = "2.1.2".freeze
+ VERSION = "2.2.0.dev".freeze
def self.bundler_major_version
@bundler_major_version ||= VERSION.split(".").first.to_i