Skip to content

Commit

Permalink
Release 2.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed Oct 25, 2024
1 parent 9e9b749 commit 31a9100
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changes

### 2024-10-25 (2.7.4)

* Workaround a bug in 3.4.8 and older https://github.com/rubygems/rubygems/pull/6490.
This bug would cause some gems with native extension to fail during compilation.
* Workaround different versions of `json` and `json_pure` being loaded (not officially supported).
* Make `json_pure` Ractor compatible.

Expand Down
1 change: 0 additions & 1 deletion lib/json/pure/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ def convert_encoding(source)
end

# Unescape characters in strings.
# UNESCAPE_MAP = Hash.new { |h, k| puts; p [:k, k]; h[k] = k.chr }
UNESCAPE_MAP = {
'"' => '"',
'\\' => '\\',
Expand Down
2 changes: 1 addition & 1 deletion lib/json/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module JSON
VERSION = '2.7.3'
VERSION = '2.7.4'
end

0 comments on commit 31a9100

Please sign in to comment.