diff options
| -rw-r--r-- | ext/json/generator/extconf.rb | 2 | ||||
| -rw-r--r-- | ext/json/lib/json/version.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/json/generator/extconf.rb b/ext/json/generator/extconf.rb index 26a8c2ba47..f58574a6cc 100644 --- a/ext/json/generator/extconf.rb +++ b/ext/json/generator/extconf.rb @@ -4,7 +4,7 @@ if RUBY_ENGINE == 'truffleruby' # 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"] diff --git a/ext/json/lib/json/version.rb b/ext/json/lib/json/version.rb index e4c6a89458..15ebd12f51 100644 --- a/ext/json/lib/json/version.rb +++ b/ext/json/lib/json/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module JSON - VERSION = '2.12.1' + VERSION = '2.12.2' end |
