We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f718178 commit 0aa97bbCopy full SHA for 0aa97bb
2 files changed
CHANGES.md
@@ -1,5 +1,27 @@
1
# CHANGES
2
3
+## 3.3.0
4
+
5
+* Allow calling to_d without arguments [GH-421]
6
7
+ **@fsateler**
8
9
+* Calculate BigMath.sin and cos in relative precision [GH-422]
10
11
+ **@tompng**
12
13
+* Add support for tangent function [GH-231]
14
15
+ **@rhannequin**
16
17
+* BigMath methods accepts numeric as an argument [GH-415]
18
19
20
21
+* Round result of sqrt and BigMath methods [GH-427]
22
23
24
25
## 3.2.3
26
27
* Allow BigDecimal accept Float without precision [GH-314]
ext/bigdecimal/bigdecimal.c
@@ -31,7 +31,7 @@
31
#include "bits.h"
32
#include "static_assert.h"
33
34
-#define BIGDECIMAL_VERSION "3.2.3"
+#define BIGDECIMAL_VERSION "3.3.0"
35
36
/* #define ENABLE_NUMERIC_STRING */
37
0 commit comments