summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshigek <shigek@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-21 03:29:54 +0000
committershigek <shigek@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-21 03:29:54 +0000
commit970ad34c958a62ba6794edd40dc85fc2dc4b9f77 (patch)
treed888d6a184ac00607597cbf5c3dfc9660a49e54a
parent87704d6a3c19eb991aa161b56a1a6b7ed1959504 (diff)
Local version number(BigDecimal::ver) incremented.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/bigdecimal/bigdecimal.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index cf71ad11cb..ae5f7a0895 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -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");
}
/*