From d116ed095be0e8d2287e4788c62f08a10c22b408 Mon Sep 17 00:00:00 2001 From: shigek Date: Tue, 21 Oct 2003 03:29:54 +0000 Subject: Local version number(BigDecimal::ver) incremented. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/bigdecimal/bigdecimal.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c index cf71ad11c..ae5f7a089 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"); } /* -- cgit