We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8050ec7 commit 7162faaCopy full SHA for 7162faa
2 files changed
CHANGES.md
@@ -1,5 +1,15 @@
1
# CHANGES
2
3
+## 4.1.2
4
+
5
+* Fix dtoa Ractor-safety bug. Update dtoa to version from Ruby 4.0 [GH-528]
6
7
+ **@jhawthorn**
8
9
+* Optimize BigDecimal#to_s [GH-519]
10
11
+ **@byroot**
12
13
## 4.1.1
14
15
* Make BigDecimal object embedded [GH-507]
ext/bigdecimal/bigdecimal.c
@@ -33,7 +33,7 @@
33
#include "div.h"
34
#include "static_assert.h"
35
36
-#define BIGDECIMAL_VERSION "4.1.1"
+#define BIGDECIMAL_VERSION "4.1.2"
37
38
/* Make sure VPMULT_BATCH_SIZE*BASE*BASE does not overflow DECDIG_DBL */
39
#define VPMULT_BATCH_SIZE 16
0 commit comments