Browse Source

Set version to 7.0.0-alpha

Benoit Blanchon 2 years ago
parent
commit
8516b368ad
6 changed files with 8 additions and 8 deletions
  1. 1 1
      CMakeLists.txt
  2. 1 1
      appveyor.yml
  3. 1 1
      idf_component.yml
  4. 1 1
      library.json
  5. 1 1
      library.properties
  6. 3 3
      src/ArduinoJson/version.hpp

+ 1 - 1
CMakeLists.txt

@@ -10,7 +10,7 @@ if(ESP_PLATFORM)
 	return()
 endif()
 
-project(ArduinoJson VERSION 6.21.0)
+project(ArduinoJson VERSION 7.0.0)
 
 if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
 	include(CTest)

+ 1 - 1
appveyor.yml

@@ -1,4 +1,4 @@
-version: 6.21.0.{build}
+version: 7.0.0.{build}
 environment:
   matrix:
     - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022

+ 1 - 1
idf_component.yml

@@ -1,4 +1,4 @@
-version: "6.21.0"
+version: "7.0.0-alpha"
 description: >-
   A simple and efficient JSON library for embedded C++.
   ArduinoJson supports ✔ serialization, ✔ deserialization, ✔ MessagePack, ✔ fixed allocation, ✔ zero-copy, ✔ streams, ✔ filtering, and more.

+ 1 - 1
library.json

@@ -7,7 +7,7 @@
     "type": "git",
     "url": "https://github.com/bblanchon/ArduinoJson.git"
   },
-  "version": "6.21.0",
+  "version": "7.0.0-alpha",
   "authors": {
     "name": "Benoit Blanchon",
     "url": "https://blog.benoitblanchon.fr"

+ 1 - 1
library.properties

@@ -1,5 +1,5 @@
 name=ArduinoJson
-version=6.21.0
+version=7.0.0-alpha
 author=Benoit Blanchon <blog.benoitblanchon.fr>
 maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
 sentence=A simple and efficient JSON library for embedded C++.

+ 3 - 3
src/ArduinoJson/version.hpp

@@ -4,7 +4,7 @@
 
 #pragma once
 
-#define ARDUINOJSON_VERSION "6.21.0"
-#define ARDUINOJSON_VERSION_MAJOR 6
-#define ARDUINOJSON_VERSION_MINOR 21
+#define ARDUINOJSON_VERSION "7.0.0-alpha"
+#define ARDUINOJSON_VERSION_MAJOR 7
+#define ARDUINOJSON_VERSION_MINOR 0
 #define ARDUINOJSON_VERSION_REVISION 0