Explorar o código

Set version to 7.3.1

Benoit Blanchon hai 10 meses
pai
achega
a488dd4098
Modificáronse 7 ficheiros con 13 adicións e 13 borrados
  1. 2 2
      CHANGELOG.md
  2. 1 1
      CMakeLists.txt
  3. 1 1
      appveyor.yml
  4. 2 2
      idf_component.yml
  5. 2 2
      library.json
  6. 2 2
      library.properties
  7. 3 3
      src/ArduinoJson/version.hpp

+ 2 - 2
CHANGELOG.md

@@ -1,8 +1,8 @@
 ArduinoJson: change log
 =======================
 
-HEAD
-----
+v7.3.1 (2025-02-27)
+------
 
 * Fix conversion from static string to number
 * Slightly reduce code size

+ 1 - 1
CMakeLists.txt

@@ -10,7 +10,7 @@ if(ESP_PLATFORM)
 	return()
 endif()
 
-project(ArduinoJson VERSION 7.3.0)
+project(ArduinoJson VERSION 7.3.1)
 
 if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
 	include(CTest)

+ 1 - 1
appveyor.yml

@@ -1,4 +1,4 @@
-version: 7.3.0.{build}
+version: 7.3.1.{build}
 environment:
   matrix:
     - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022

+ 2 - 2
idf_component.yml

@@ -1,7 +1,7 @@
-version: "7.3.0"
+version: "7.3.1"
 description: >-
   A simple and efficient JSON library for embedded C++.
-  ★ 6785 stars on GitHub!
+  ★ 6849 stars on GitHub!
   Supports serialization, deserialization, MessagePack, streams, filtering, and more.
   Fully tested and documented.
 url: https://arduinojson.org/

+ 2 - 2
library.json

@@ -1,13 +1,13 @@
 {
   "name": "ArduinoJson",
   "keywords": "json, rest, http, web",
-  "description": "A simple and efficient JSON library for embedded C++. ⭐ 6785 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.",
+  "description": "A simple and efficient JSON library for embedded C++. ⭐ 6849 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.",
   "homepage": "https://arduinojson.org/?utm_source=meta&utm_medium=library.json",
   "repository": {
     "type": "git",
     "url": "https://github.com/bblanchon/ArduinoJson.git"
   },
-  "version": "7.3.0",
+  "version": "7.3.1",
   "authors": {
     "name": "Benoit Blanchon",
     "url": "https://blog.benoitblanchon.fr"

+ 2 - 2
library.properties

@@ -1,9 +1,9 @@
 name=ArduinoJson
-version=7.3.0
+version=7.3.1
 author=Benoit Blanchon <blog.benoitblanchon.fr>
 maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
 sentence=A simple and efficient JSON library for embedded C++.
-paragraph=⭐ 6785 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.
+paragraph=⭐ 6849 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.
 category=Data Processing
 url=https://arduinojson.org/?utm_source=meta&utm_medium=library.properties
 architectures=*

+ 3 - 3
src/ArduinoJson/version.hpp

@@ -4,8 +4,8 @@
 
 #pragma once
 
-#define ARDUINOJSON_VERSION "7.3.0"
+#define ARDUINOJSON_VERSION "7.3.1"
 #define ARDUINOJSON_VERSION_MAJOR 7
 #define ARDUINOJSON_VERSION_MINOR 3
-#define ARDUINOJSON_VERSION_REVISION 0
-#define ARDUINOJSON_VERSION_MACRO V730
+#define ARDUINOJSON_VERSION_REVISION 1
+#define ARDUINOJSON_VERSION_MACRO V731