Skip to content

Commit d9914c9

Browse files
authored
Bump version to v4.0.0 (#472)
1 parent 45d203a commit d9914c9

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# CHANGES
22

3+
## 4.0.0
4+
5+
* `BigDecimal#divmod` return value changed to `[Integer, BigDecimal]` [GH-312]
6+
7+
**@mrzasa**
8+
9+
* Remove `BigDecimal#precs` [GH-470]
10+
11+
**@tompng**
12+
13+
* BigMath now supports all functions defined in Math module [GH-336] [GH-357] [GH-451] [GH-448]
14+
15+
**@tompng**
16+
17+
* Fix incorrect exception when exponent is fractional for Infinity base [GH-453]
18+
19+
**@troy-dunamu**
20+
21+
* Deprecate `bigdecimal/jacobian`, `bigdecimal/ludcmp` and `bigdecimal/newton` [GH-471]
22+
23+
**@tompng**
24+
325
## 3.3.1
426

527
* All BigMath methods converts non integer precision with to_int

ext/bigdecimal/bigdecimal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#include "bits.h"
3232
#include "static_assert.h"
3333

34-
#define BIGDECIMAL_VERSION "3.3.1"
34+
#define BIGDECIMAL_VERSION "4.0.0"
3535

3636
/* #define ENABLE_NUMERIC_STRING */
3737

0 commit comments

Comments
 (0)