diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-01-29 05:16:38 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-01-29 05:16:38 +0000 |
| commit | 2cff453e491270dfe080beeddb731a4d8efae6a0 (patch) | |
| tree | d39f9c67e6041bde122bfb1f61ff1d7ab5b4b67a | |
| parent | 694d01849df0aad64bc924caae4ae91a78cb069a (diff) | |
| download | ruby-2cff453e491270dfe080beeddb731a4d8efae6a0.tar.gz ruby-2cff453e491270dfe080beeddb731a4d8efae6a0.tar.xz ruby-2cff453e491270dfe080beeddb731a4d8efae6a0.zip | |
* tool/parse.rb: replace YARVCore by VM class.
http://d.hatena.ne.jp/ysano2005/20070128
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | tool/parse.rb | 2 | ||||
| -rw-r--r-- | version.h | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -1,3 +1,8 @@ +Mon Jan 29 14:14:35 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * tool/parse.rb: replace YARVCore by VM class. + http://d.hatena.ne.jp/ysano2005/20070128 + Sun Jan 28 08:41:49 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp> * ext/win32ole/win32ole.c: refactoring. diff --git a/tool/parse.rb b/tool/parse.rb index 15e7f7749..bf0bbc30a 100644 --- a/tool/parse.rb +++ b/tool/parse.rb @@ -6,7 +6,7 @@ puts '# ' + '-' * 70 puts $str puts '# ' + '-' * 70 -$parsed = YARVCore::InstructionSequence.compile_file($file) +$parsed = VM::InstructionSequence.compile_file($file) puts "# disasm result: " puts '# ' + '-' * 70 puts $parsed.disasm @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2007-01-28" +#define RUBY_RELEASE_DATE "2007-01-29" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20070128 +#define RUBY_RELEASE_CODE 20070129 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2007 #define RUBY_RELEASE_MONTH 1 -#define RUBY_RELEASE_DAY 28 +#define RUBY_RELEASE_DAY 29 RUBY_EXTERN const char ruby_version[]; RUBY_EXTERN const char ruby_release_date[]; |
