From c75f360bdf10f1c8847cbb8d0c7d0a68e35cf7d5 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 25 Feb 2013 14:51:12 +0000 Subject: [PATCH] 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 --- ChangeLog | 4 ++++ include/ruby/version.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d830985a62..9f27c8deda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Feb 25 23:51:04 2013 Nobuyoshi Nakada + + * include/ruby/version.h: bump RUBY_API_VERSION same as RUBY_VERSION. + Mon Feb 25 21:03:34 2013 NARUSE, Yui * 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)