summaryrefslogtreecommitdiff
path: root/version.h
diff options
context:
space:
mode:
authorwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-17 18:27:36 +0000
committerwyhaines <wyhaines@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-17 18:27:36 +0000
commit6f1649e091dfc2c58d29e524f31d0295e885da84 (patch)
tree46f5e2be95973842c2e9ffa19fb682e991940ae8 /version.h
parent2176130373f03ad76c814dd652044f23f9158a69 (diff)
ext/bigdecimal/bigdecimal.c: Backport #2349 [ruby-core:26646]; fix comparisons. Also fix a bunch of bugs that lead to broken-ness and failing tests.
test/bigdecimal/test_bigdecimal.rb: Backport #2349 [ruby-core:26646]; added a test suite. test/ruby/test_exception.rb: The test suite was breaking ZeroDivisionError, which in turn would break bigdecimal/test_bigdecimal.rb. Made a simple fix that keeps that test but does so non-destructively. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@29025 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'version.h')
-rw-r--r--version.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/version.h b/version.h
index 62218d485d..8f5dd218bc 100644
--- a/version.h
+++ b/version.h
@@ -1,15 +1,15 @@
#define RUBY_VERSION "1.8.6"
-#define RUBY_RELEASE_DATE "2010-06-23"
+#define RUBY_RELEASE_DATE "2010-08-18"
#define RUBY_VERSION_CODE 186
-#define RUBY_RELEASE_CODE 20100623
-#define RUBY_PATCHLEVEL 418
+#define RUBY_RELEASE_CODE 20100818
+#define RUBY_PATCHLEVEL 419
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
#define RUBY_VERSION_TEENY 6
#define RUBY_RELEASE_YEAR 2010
-#define RUBY_RELEASE_MONTH 6
-#define RUBY_RELEASE_DAY 23
+#define RUBY_RELEASE_MONTH 8
+#define RUBY_RELEASE_DAY 18
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];