Skip to content

Commit 96281de

Browse files
committed
Set version to 7.4.0
1 parent f0e84e4 commit 96281de

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ArduinoJson: change log
22
=======================
33

4-
HEAD
5-
----
4+
v7.4.0 (2025-04-09)
5+
------
66

77
* Optimize storage of tiny strings (up to 3 characters)
88
* Fix support for `const char[]` (issue #2166)

CMakeLists.txt

+1-1
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.3.1)
13+
project(ArduinoJson VERSION 7.4.0)
1414

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

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 7.3.1.{build}
1+
version: 7.4.0.{build}
22
environment:
33
matrix:
44
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022

idf_component.yml

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

library.json

+2-2
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++. ⭐ 6849 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++. ⭐ 6896 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.3.1",
10+
"version": "7.4.0",
1111
"authors": {
1212
"name": "Benoit Blanchon",
1313
"url": "https://blog.benoitblanchon.fr"

library.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=ArduinoJson
2-
version=7.3.1
2+
version=7.4.0
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=⭐ 6849 stars on GitHub! Supports serialization, deserialization, MessagePack, streams, filtering, and more. Fully tested and documented.
6+
paragraph=⭐ 6896 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

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#pragma once
66

7-
#define ARDUINOJSON_VERSION "7.3.1"
7+
#define ARDUINOJSON_VERSION "7.4.0"
88
#define ARDUINOJSON_VERSION_MAJOR 7
9-
#define ARDUINOJSON_VERSION_MINOR 3
10-
#define ARDUINOJSON_VERSION_REVISION 1
11-
#define ARDUINOJSON_VERSION_MACRO V731
9+
#define ARDUINOJSON_VERSION_MINOR 4
10+
#define ARDUINOJSON_VERSION_REVISION 0
11+
#define ARDUINOJSON_VERSION_MACRO V740

0 commit comments

Comments
 (0)