diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-25 14:51:12 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-02-25 14:51:12 +0000 |
commit | c75f360bdf10f1c8847cbb8d0c7d0a68e35cf7d5 (patch) | |
tree | ced3793f8dd0421af7ccb72310ce7b0b2edab8a1 | |
parent | 2d3808eeac6ea951797fa53cb857919aa0d7d4cf (diff) |
version.h: bump RUBY_API_VERSION
* include/ruby/version.h: bump RUBY_API_VERSION same as RUBY_VERSION.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39496 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | include/ruby/version.h | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Mon Feb 25 23:51:04 2013 Nobuyoshi Nakada <[email protected]> + + * include/ruby/version.h: bump RUBY_API_VERSION same as RUBY_VERSION. + Mon Feb 25 21:03:34 2013 NARUSE, Yui <[email protected]> * string.c (str_byte_substr): don't set coderange if it's not known. diff --git a/include/ruby/version.h b/include/ruby/version.h index b41b64fe66..9ecf6fe2a5 100644 --- a/include/ruby/version.h +++ b/include/ruby/version.h @@ -31,7 +31,7 @@ /* API version */ #define RUBY_API_VERSION_MAJOR 2 -#define RUBY_API_VERSION_MINOR 0 +#define RUBY_API_VERSION_MINOR 1 #define RUBY_API_VERSION_TEENY 0 #define RUBY_API_VERSION_CODE (RUBY_API_VERSION_MAJOR*10000+RUBY_API_VERSION_MINOR*100+RUBY_API_VERSION_TEENY) |