Skip to content

Commit 7abf875

Browse files
committed
Set version to 6.19.3
1 parent e3e375f commit 7abf875

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
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.19.3 (2022-03-08)
5+
-------
66

77
* Fix `call of overloaded 'String(const char*, int)' is ambiguous`
88
* Fix `JsonString` operator `==` and `!=` for non-zero-terminated string

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.19.2)
13+
project(ArduinoJson VERSION 6.19.3)
1414

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
[![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)
88
[![LGTM Grade](https://img.shields.io/lgtm/grade/cpp/github/bblanchon/ArduinoJson?label=quality&logo=lgtm)](https://lgtm.com/projects/g/bblanchon/ArduinoJson/)
99
[![Coveralls branch](https://img.shields.io/coveralls/github/bblanchon/ArduinoJson/6.x?logo=coveralls)](https://coveralls.io/github/bblanchon/ArduinoJson?branch=6.x)
10-
[![Arduino Library Manager](https://img.shields.io/static/v1?label=Arduino&message=v6.19.2&logo=arduino&logoColor=white&color=blue)](https://www.ardu-badge.com/ArduinoJson/6.19.2)
11-
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/bblanchon/library/ArduinoJson.svg?version=6.19.2)](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.19.2)
10+
[![Arduino Library Manager](https://img.shields.io/static/v1?label=Arduino&message=v6.19.3&logo=arduino&logoColor=white&color=blue)](https://www.ardu-badge.com/ArduinoJson/6.19.3)
11+
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/bblanchon/library/ArduinoJson.svg?version=6.19.3)](https://registry.platformio.org/packages/libraries/bblanchon/ArduinoJson?version=6.19.3)
1212
[![GitHub stars](https://img.shields.io/github/stars/bblanchon/ArduinoJson?style=flat&logo=github)](https://github.com/bblanchon/ArduinoJson/stargazers)
1313
[![GitHub Sponsors](https://img.shields.io/github/sponsors/bblanchon?logo=github)](https://github.com/sponsors/bblanchon)
1414

appveyor.yml

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

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.19.2",
10+
"version": "6.19.3",
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.19.2
2+
version=6.19.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++.

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.19.2"
7+
#define ARDUINOJSON_VERSION "6.19.3"
88
#define ARDUINOJSON_VERSION_MAJOR 6
99
#define ARDUINOJSON_VERSION_MINOR 19
10-
#define ARDUINOJSON_VERSION_REVISION 2
10+
#define ARDUINOJSON_VERSION_REVISION 3

0 commit comments

Comments
 (0)