We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8603a57 commit a29cb77Copy full SHA for a29cb77
CHANGES.md
@@ -2,6 +2,10 @@
2
3
### Unreleased
4
5
+### 2025-05-23 (2.12.2)
6
+
7
+* Fix compiler optimization level.
8
9
### 2025-05-23 (2.12.1)
10
11
* Fix a potential crash in large negative floating point number generation.
ext/json/ext/generator/extconf.rb
@@ -4,7 +4,7 @@
# The pure-Ruby generator is faster on TruffleRuby, so skip compiling the generator extension
File.write('Makefile', dummy_makefile("").join)
else
- append_cflags("-std=c99 -O0")
+ append_cflags("-std=c99")
$defs << "-DJSON_GENERATOR"
$defs << "-DJSON_DEBUG" if ENV["JSON_DEBUG"]
lib/json/version.rb
@@ -1,5 +1,5 @@
1
# frozen_string_literal: true
module JSON
- VERSION = '2.12.1'
+ VERSION = '2.12.2'
end
0 commit comments