summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-02-21 22:36:01 +0900
committergit <svn-admin@ruby-lang.org>2023-02-21 15:35:40 +0000
commit0cde887eb9fd47b9857c9e4a7fbafc581fe51f60 (patch)
treec2b4cbb296da8921bda022de0b7fe2a21046ebe0 /ext
parent7b768e43354391098929adf97a593fae79d5fc2e (diff)
downloadruby-0cde887eb9fd47b9857c9e4a7fbafc581fe51f60.tar.gz
[ruby/bigdecimal] Bump up to 3.1.4
ruby/bigdecimal#187 has changed a behavior and ruby/spec also needed a follow up at https://github.com/ruby/ruby/commit/0d8ef62fc293. However, because bigdecimal is a separate gem and can be updated in older versions of ruby, `RUBY_VERSION` is not appropriate for this guard. That means it needs bumped up `BigDecimal::VERSION`. https://github.com/ruby/bigdecimal/commit/3a2a7a9353
Diffstat (limited to 'ext')
-rw-r--r--ext/bigdecimal/bigdecimal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index ae37c65f4c..6eb14bcd0e 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -31,7 +31,7 @@
#include "bits.h"
#include "static_assert.h"
-#define BIGDECIMAL_VERSION "3.1.3"
+#define BIGDECIMAL_VERSION "3.1.4"
/* #define ENABLE_NUMERIC_STRING */