Skip to content

Commit f82a227

Browse files
committed
Set version to 6.18.5
1 parent fcd8159 commit f82a227

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
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.18.5 (2021-09-28)
5+
-------
66

77
* Set `ARDUINOJSON_EMBEDDED_MODE` to `1` on Nios II (issue #1657)
88

CMakeLists.txt

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

14-
project(ArduinoJson VERSION 6.18.4)
14+
project(ArduinoJson VERSION 6.18.5)
1515

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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

15-
[![arduino-library-badge](https://www.ardu-badge.com/badge/ArduinoJson.svg?version=6.18.4)](https://www.ardu-badge.com/ArduinoJson/6.18.4)
15+
[![arduino-library-badge](https://www.ardu-badge.com/badge/ArduinoJson.svg?version=6.18.5)](https://www.ardu-badge.com/ArduinoJson/6.18.5)
1616

1717
ArduinoJson is a C++ JSON library for Arduino and IoT (Internet Of Things).
1818

appveyor.yml

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

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.18.4",
10+
"version": "6.18.5",
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.18.4
2+
version=6.18.5
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.18.4"
7+
#define ARDUINOJSON_VERSION "6.18.5"
88
#define ARDUINOJSON_VERSION_MAJOR 6
99
#define ARDUINOJSON_VERSION_MINOR 18
10-
#define ARDUINOJSON_VERSION_REVISION 4
10+
#define ARDUINOJSON_VERSION_REVISION 5

0 commit comments

Comments
 (0)