Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# CHANGES

## 4.0.0

* `BigDecimal#divmod` return value changed to `[Integer, BigDecimal]` [GH-312]

**@mrzasa**

* Remove `BigDecimal#precs` [GH-470]

**@tompng**

* BigMath now supports all functions defined in Math module [GH-336] [GH-357] [GH-451] [GH-448]

**@tompng**

* Fix incorrect exception when exponent is fractional for Infinity base [GH-453]

**@troy-dunamu**

* Deprecate `bigdecimal/jacobian`, `bigdecimal/ludcmp` and `bigdecimal/newton` [GH-471]

**@tompng**

## 3.3.1

* All BigMath methods converts non integer precision with to_int
Expand Down
2 changes: 1 addition & 1 deletion ext/bigdecimal/bigdecimal.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "bits.h"
#include "static_assert.h"

#define BIGDECIMAL_VERSION "3.3.1"
#define BIGDECIMAL_VERSION "4.0.0"

/* #define ENABLE_NUMERIC_STRING */

Expand Down