summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-25 06:36:54 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-02-25 06:36:54 +0000
commite04b5d25be58ceb85015a8cdda9be05c7fc9b482 (patch)
tree7c99bbb7bc808853e0637aa1c4a17106558886cf
parentc4b980ec687651abca2a117088615d47416beb53 (diff)
merge revision(s) 49740:
* tool/merger.rb: support 2.1+ versioning scheme. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@49741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/mkconfig.rb2
-rw-r--r--version.h6
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d4d13028e..f212c33059 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Feb 25 15:36:26 2015 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * tool/merger.rb: support 2.1+ versioning scheme.
+
Tue Feb 24 17:41:27 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
* time.c (time_zone_name): should be US-ASCII only if all 7-bits,
diff --git a/tool/mkconfig.rb b/tool/mkconfig.rb
index 3da57581ee..30a259db69 100755
--- a/tool/mkconfig.rb
+++ b/tool/mkconfig.rb
@@ -29,7 +29,7 @@ print %[
# changes made to this file will be lost the next time ruby is built.
module RbConfig
- RUBY_VERSION == "#{version}" or
+ RUBY_VERSION.start_with?("#{version}"[/^[0-9]+[.][0-9]+[.]/]) or
raise "ruby lib version (#{version}) doesn't match executable version (\#{RUBY_VERSION})"
]
diff --git a/version.h b/version.h
index ca21162db1..d9a3795209 100644
--- a/version.h
+++ b/version.h
@@ -1,10 +1,10 @@
#define RUBY_VERSION "2.2.0"
-#define RUBY_RELEASE_DATE "2015-02-24"
-#define RUBY_PATCHLEVEL 83
+#define RUBY_RELEASE_DATE "2015-02-25"
+#define RUBY_PATCHLEVEL 84
#define RUBY_RELEASE_YEAR 2015
#define RUBY_RELEASE_MONTH 2
-#define RUBY_RELEASE_DAY 24
+#define RUBY_RELEASE_DAY 25
#include "ruby/version.h"