1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Local version number(BigDecimal::ver) incremented.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shigek 2003-10-21 03:29:54 +00:00
parent 87704d6a3c
commit 970ad34c95

View file

@ -47,7 +47,11 @@ VALUE rb_cBigDecimal;
static VALUE
BigDecimal_version(VALUE self)
{
return rb_str_new2("1.0.0");
/*
* 1.0.0: Ruby 1.8.0
* 1.0.1: Ruby 1.8.1
*/
return rb_str_new2("1.0.1");
}
/*