Skip to content

Commit 420221f

Browse files
committed
Set version to 6.21.2
1 parent 082ae69 commit 420221f

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
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+
v6.21.2 (2023-04-12)
5+
-------
66

77
* Fix compatibility with the Zephyr Project (issue #1905)
88
* Allow using PROGMEM outside of Arduino (issue #1903)

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 6.21.1)
13+
project(ArduinoJson VERSION 6.21.2)
1414

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
[![Continuous Integration](https://ci.appveyor.com/api/projects/status/m7s53wav1l0abssg/branch/6.x?svg=true)](https://ci.appveyor.com/project/bblanchon/arduinojson/branch/6.x)
99
[![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/arduinojson.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:arduinojson)
1010
[![Coveralls branch](https://img.shields.io/coveralls/github/bblanchon/ArduinoJson/6.x?logo=coveralls)](https://coveralls.io/github/bblanchon/ArduinoJson?branch=6.x)
11-
[![Arduino Library Manager](https://img.shields.io/static/v1?label=Arduino&message=v6.21.1&logo=arduino&logoColor=white&color=blue)](https://www.ardu-badge.com/ArduinoJson/6.21.1)
12-
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/bblanchon/library/ArduinoJson.svg?version=6.21.1)](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.21.1)
13-
[![ESP IDF](https://img.shields.io/static/v1?label=ESP+IDF&message=v6.21.1&logo=cpu&logoColor=white&color=blue)](https://components.espressif.com/components/bblanchon/arduinojson)
11+
[![Arduino Library Manager](https://img.shields.io/static/v1?label=Arduino&message=v6.21.2&logo=arduino&logoColor=white&color=blue)](https://www.ardu-badge.com/ArduinoJson/6.21.2)
12+
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/bblanchon/library/ArduinoJson.svg?version=6.21.2)](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.21.2)
13+
[![ESP IDF](https://img.shields.io/static/v1?label=ESP+IDF&message=v6.21.2&logo=cpu&logoColor=white&color=blue)](https://components.espressif.com/components/bblanchon/arduinojson)
1414
[![GitHub stars](https://img.shields.io/github/stars/bblanchon/ArduinoJson?style=flat&logo=github&color=orange)](https://github.com/bblanchon/ArduinoJson/stargazers)
1515
[![GitHub Sponsors](https://img.shields.io/github/sponsors/bblanchon?logo=github&color=orange)](https://github.com/sponsors/bblanchon)
1616

appveyor.yml

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

idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "6.21.1"
1+
version: "6.21.2"
22
description: >-
33
A simple and efficient JSON library for embedded C++.
44
ArduinoJson supports ✔ serialization, ✔ deserialization, ✔ MessagePack, ✔ fixed allocation, ✔ zero-copy, ✔ streams, ✔ filtering, and more.

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/bblanchon/ArduinoJson.git"
99
},
10-
"version": "6.21.1",
10+
"version": "6.21.2",
1111
"authors": {
1212
"name": "Benoit Blanchon",
1313
"url": "https://blog.benoitblanchon.fr"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ArduinoJson
2-
version=6.21.1
2+
version=6.21.2
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++.

src/ArduinoJson/version.hpp

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

55
#pragma once
66

7-
#define ARDUINOJSON_VERSION "6.21.1"
7+
#define ARDUINOJSON_VERSION "6.21.2"
88
#define ARDUINOJSON_VERSION_MAJOR 6
99
#define ARDUINOJSON_VERSION_MINOR 21
10-
#define ARDUINOJSON_VERSION_REVISION 1
10+
#define ARDUINOJSON_VERSION_REVISION 2

0 commit comments

Comments
 (0)