Skip to content

Commit 848c0cd

Browse files
committed
Set version to 7.0.3
1 parent 46a807b commit 848c0cd

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ArduinoJson: change log
22
=======================
33

4-
HEAD
5-
----
4+
v7.0.3 (2024-02-05)
5+
------
66

77
* Improve error messages when using `char` or `char*` (issue #2043)
88
* Reduce stack consumption (issue #2046)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if(ESP_PLATFORM)
1010
return()
1111
endif()
1212

13-
project(ArduinoJson VERSION 7.0.2)
13+
project(ArduinoJson VERSION 7.0.3)
1414

1515
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
1616
include(CTest)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 7.0.2.{build}
1+
version: 7.0.3.{build}
22
environment:
33
matrix:
44
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022

idf_component.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
version: "7.0.2"
1+
version: "7.0.3"
22
description: >-
33
A simple and efficient JSON library for embedded C++.
4-
6444 stars on GitHub!
4+
6463 stars on GitHub!
55
Supports serialization, deserialization, MessagePack, streams, filtering, and more.
66
Fully tested and documented.
77
url: https://arduinojson.org/

library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "ArduinoJson",
33
"keywords": "json, rest, http, web",
4-
"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.",
4+
"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.",
55
"homepage": "https://arduinojson.org/?utm_source=meta&utm_medium=library.json",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/bblanchon/ArduinoJson.git"
99
},
10-
"version": "7.0.2",
10+
"version": "7.0.3",
1111
"authors": {
1212
"name": "Benoit Blanchon",
1313
"url": "https://blog.benoitblanchon.fr"

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=ArduinoJson
2-
version=7.0.2
2+
version=7.0.3
33
author=Benoit Blanchon <blog.benoitblanchon.fr>
44
maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
55
sentence=A simple and efficient JSON library for embedded C++.
6-
paragraph=⭐ 6444 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.
6+
paragraph=⭐ 6463 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.
77
category=Data Processing
88
url=https://arduinojson.org/?utm_source=meta&utm_medium=library.properties
99
architectures=*

src/ArduinoJson/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#pragma once
66

7-
#define ARDUINOJSON_VERSION "7.0.2"
7+
#define ARDUINOJSON_VERSION "7.0.3"
88
#define ARDUINOJSON_VERSION_MAJOR 7
99
#define ARDUINOJSON_VERSION_MINOR 0
10-
#define ARDUINOJSON_VERSION_REVISION 2
11-
#define ARDUINOJSON_VERSION_MACRO V702
10+
#define ARDUINOJSON_VERSION_REVISION 3
11+
#define ARDUINOJSON_VERSION_MACRO V703

0 commit comments

Comments
 (0)