Skip to content

Commit 36bcc7b

Browse files
committed
Set version to 6.18.0
1 parent c7c0b72 commit 36bcc7b

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.18.0 (2021-05-05)
5+
-------
66

77
* Added support for custom converters (issue #687)
88
* Added support for `Printable` (issue #1444)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
cmake_minimum_required(VERSION 3.0)
66

7-
project(ArduinoJson VERSION 6.17.3)
7+
project(ArduinoJson VERSION 6.18.0)
88

99
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
1010
include(CTest)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
---
44

5-
[![arduino-library-badge](https://www.ardu-badge.com/badge/ArduinoJson.svg?version=6.17.3)](https://www.ardu-badge.com/ArduinoJson/6.17.3)
5+
[![arduino-library-badge](https://www.ardu-badge.com/badge/ArduinoJson.svg?version=6.18.0)](https://www.ardu-badge.com/ArduinoJson/6.18.0)
66
[![Continuous Integration](https://github.com/bblanchon/ArduinoJson/workflows/Continuous%20Integration/badge.svg?branch=6.x)](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22+branch%3A6.x)
77
[![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)
88
[![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)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 6.17.3.{build}
1+
version: 6.18.0.{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.17.3",
10+
"version": "6.18.0",
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.17.3
2+
version=6.18.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++.

src/ArduinoJson/version.hpp

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

55
#pragma once
66

7-
#define ARDUINOJSON_VERSION "6.17.3"
7+
#define ARDUINOJSON_VERSION "6.18.0"
88
#define ARDUINOJSON_VERSION_MAJOR 6
9-
#define ARDUINOJSON_VERSION_MINOR 17
10-
#define ARDUINOJSON_VERSION_REVISION 3
9+
#define ARDUINOJSON_VERSION_MINOR 18
10+
#define ARDUINOJSON_VERSION_REVISION 0

0 commit comments

Comments
 (0)