From 7a3b482013eef93dd266db0928b931a28adcf408 Mon Sep 17 00:00:00 2001 From: Jean Boussier Date: Thu, 24 Oct 2024 10:18:09 +0200 Subject: [PATCH] Release 2.7.3 --- CHANGES.md | 4 ++-- lib/json/version.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 7d2c7e14..665635bb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,8 @@ # Changes -### 2024-10-23 (2.7.3.rc1) +### 2024-10-24 (2.7.3) -* Numerous performance optimizations in `JSON.generate` and `JSON.dump`. +* Numerous performance optimizations in `JSON.generate` and `JSON.dump` (up to 2 times faster). * Limit the size of ParserError exception messages, only include up to 32 bytes of the unparseable source. * Fix json-pure's `Object#to_json` to accept non state arguments * Fix multiline comment support in `json-pure`. diff --git a/lib/json/version.rb b/lib/json/version.rb index 0f002cfe..d3d621b7 100644 --- a/lib/json/version.rb +++ b/lib/json/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module JSON - VERSION = '2.7.3.rc1' + VERSION = '2.7.3' end