From 848c0cdc7e1fb0ede334af02a4a3ceb07431b698 Mon Sep 17 00:00:00 2001 From: Benoit Blanchon Date: Mon, 5 Feb 2024 13:34:38 +0100 Subject: [PATCH] Set version to 7.0.3 --- CHANGELOG.md | 4 ++-- CMakeLists.txt | 2 +- appveyor.yml | 2 +- idf_component.yml | 4 ++-- library.json | 4 ++-- library.properties | 4 ++-- src/ArduinoJson/version.hpp | 6 +++--- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb318ae7..fa4cfe6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ ArduinoJson: change log ======================= -HEAD ----- +v7.0.3 (2024-02-05) +------ * Improve error messages when using `char` or `char*` (issue #2043) * Reduce stack consumption (issue #2046) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6efa04b3..169cff18 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ if(ESP_PLATFORM) return() endif() -project(ArduinoJson VERSION 7.0.2) +project(ArduinoJson VERSION 7.0.3) if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME) include(CTest) diff --git a/appveyor.yml b/appveyor.yml index 3712d5d9..d8ff69d9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 7.0.2.{build} +version: 7.0.3.{build} environment: matrix: - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022 diff --git a/idf_component.yml b/idf_component.yml index 429d3733..5baab079 100644 --- a/idf_component.yml +++ b/idf_component.yml @@ -1,7 +1,7 @@ -version: "7.0.2" +version: "7.0.3" description: >- A simple and efficient JSON library for embedded C++. - ⭐ 6444 stars on GitHub! + ⭐ 6463 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented. url: https://arduinojson.org/ diff --git a/library.json b/library.json index 46f156ac..c66ecfc7 100644 --- a/library.json +++ b/library.json @@ -1,13 +1,13 @@ { "name": "ArduinoJson", "keywords": "json, rest, http, web", - "description": "A simple and efficient JSON library for embedded C++. ⭐ 6444 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++. ⭐ 6463 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.0.2", + "version": "7.0.3", "authors": { "name": "Benoit Blanchon", "url": "https://blog.benoitblanchon.fr" diff --git a/library.properties b/library.properties index e9d9c2c7..6c28398e 100644 --- a/library.properties +++ b/library.properties @@ -1,9 +1,9 @@ name=ArduinoJson -version=7.0.2 +version=7.0.3 author=Benoit Blanchon maintainer=Benoit Blanchon sentence=A simple and efficient JSON library for embedded C++. -paragraph=⭐ 6444 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented. +paragraph=⭐ 6463 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=* diff --git a/src/ArduinoJson/version.hpp b/src/ArduinoJson/version.hpp index e41890e9..dc1215a6 100644 --- a/src/ArduinoJson/version.hpp +++ b/src/ArduinoJson/version.hpp @@ -4,8 +4,8 @@ #pragma once -#define ARDUINOJSON_VERSION "7.0.2" +#define ARDUINOJSON_VERSION "7.0.3" #define ARDUINOJSON_VERSION_MAJOR 7 #define ARDUINOJSON_VERSION_MINOR 0 -#define ARDUINOJSON_VERSION_REVISION 2 -#define ARDUINOJSON_VERSION_MACRO V702 +#define ARDUINOJSON_VERSION_REVISION 3 +#define ARDUINOJSON_VERSION_MACRO V703