2003-12-25 04:54:08 +00:00
|
|
|
#define RUBY_VERSION "1.9.0"
|
* vm.c: some refactoring.
* rename th_* to vm_*.
* remove unused variables functions.
* add prototypes.
* blockinlining.c, compile.c, cont.c, eval.c, eval_intern.h,
eval_jump.h, eval_load.c, inits.c, insns.def, iseq.c, parse.y,
proc.c, process.c, signal.c, thread.c, vm.c, vm_dump.c,
vm_evalbody.ci, yarvcore.c, yarvcore.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-24 15:42:41 +00:00
|
|
|
#define RUBY_RELEASE_DATE "2007-06-25"
|
2003-12-25 04:54:08 +00:00
|
|
|
#define RUBY_VERSION_CODE 190
|
* vm.c: some refactoring.
* rename th_* to vm_*.
* remove unused variables functions.
* add prototypes.
* blockinlining.c, compile.c, cont.c, eval.c, eval_intern.h,
eval_jump.h, eval_load.c, inits.c, insns.def, iseq.c, parse.y,
proc.c, process.c, signal.c, thread.c, vm.c, vm_dump.c,
vm_evalbody.ci, yarvcore.c, yarvcore.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-24 15:42:41 +00:00
|
|
|
#define RUBY_RELEASE_CODE 20070625
|
2006-11-26 09:34:32 +00:00
|
|
|
#define RUBY_PATCHLEVEL 0
|
2002-12-24 08:53:56 +00:00
|
|
|
|
|
|
|
#define RUBY_VERSION_MAJOR 1
|
2003-12-25 04:54:08 +00:00
|
|
|
#define RUBY_VERSION_MINOR 9
|
|
|
|
#define RUBY_VERSION_TEENY 0
|
2006-12-31 15:02:22 +00:00
|
|
|
#define RUBY_RELEASE_YEAR 2007
|
2007-05-31 16:59:12 +00:00
|
|
|
#define RUBY_RELEASE_MONTH 6
|
* vm.c: some refactoring.
* rename th_* to vm_*.
* remove unused variables functions.
* add prototypes.
* blockinlining.c, compile.c, cont.c, eval.c, eval_intern.h,
eval_jump.h, eval_load.c, inits.c, insns.def, iseq.c, parse.y,
proc.c, process.c, signal.c, thread.c, vm.c, vm_dump.c,
vm_evalbody.ci, yarvcore.c, yarvcore.h: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-06-24 15:42:41 +00:00
|
|
|
#define RUBY_RELEASE_DAY 25
|
2004-06-23 16:29:16 +00:00
|
|
|
|
2007-05-01 08:45:28 +00:00
|
|
|
#ifdef RUBY_EXTERN
|
2004-06-23 16:29:16 +00:00
|
|
|
RUBY_EXTERN const char ruby_version[];
|
|
|
|
RUBY_EXTERN const char ruby_release_date[];
|
|
|
|
RUBY_EXTERN const char ruby_platform[];
|
2006-11-26 09:34:32 +00:00
|
|
|
RUBY_EXTERN const int ruby_patchlevel;
|
2007-05-01 08:45:28 +00:00
|
|
|
#endif
|