aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-06 14:13:27 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-06 14:13:27 +0000
commita06a1772f3c7d7703adcad05ba10711212b1d154 (patch)
treea274d4bb734f288840eca53ffb0fb41baa2a3c8c
parentfb08cd16f250f95c090404c03d0dce8ddbaeea2a (diff)
downloadruby-a06a1772f3c7d7703adcad05ba10711212b1d154.tar.gz
* include/ruby/version.h: RUBY_API_VERSION 2.0.0
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34220 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--include/ruby/version.h6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ba0276698..d24faa28c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Jan 6 23:11:20 2012 Ayumu AIZAWA <ayumu.aizawa@gmail.com>
+
+ * include/ruby/version.h: RUBY_API_VERSION 2.0.0
+
Fri Jan 6 12:24:11 2012 NARUSE, Yui <naruse@ruby-lang.org>
* object.c (rb_inspect): raises Encoding::CompatibilityError if the
diff --git a/include/ruby/version.h b/include/ruby/version.h
index 458efff320..b41b64fe66 100644
--- a/include/ruby/version.h
+++ b/include/ruby/version.h
@@ -30,9 +30,9 @@
#define RUBY_BIRTH_DAY 24
/* API version */
-#define RUBY_API_VERSION_MAJOR 1
-#define RUBY_API_VERSION_MINOR 9
-#define RUBY_API_VERSION_TEENY 1
+#define RUBY_API_VERSION_MAJOR 2
+#define RUBY_API_VERSION_MINOR 0
+#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)
#ifdef RUBY_EXTERN