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
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGES

## 4.1.1

* Make BigDecimal object embedded [GH-507]

**@byroot**

* Multiplication with 16-decdig batch [GH-501] [GH-511]

**@tompng**

## 4.1.0

* Drop Ruby 2.5 support [GH-505]
Expand Down
2 changes: 1 addition & 1 deletion ext/bigdecimal/bigdecimal.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "div.h"
#include "static_assert.h"

#define BIGDECIMAL_VERSION "4.1.0"
#define BIGDECIMAL_VERSION "4.1.1"

/* Make sure VPMULT_BATCH_SIZE*BASE*BASE does not overflow DECDIG_DBL */
#define VPMULT_BATCH_SIZE 16
Expand Down