8000 Set version to 6.0.1-beta · java64/ArduinoJson@4fe2b11 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4fe2b11

Browse files
committed
Set version to 6.0.1-beta
1 parent c3403ed commit 4fe2b11

File tree

5 files changed

+7
-56
lines changed

5 files changed

+7
-56
lines changed

CHANGELOG.md

Lines changed: 2 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ArduinoJson: change log
22
=======================
33

4-
HEAD
5-
----
4+
v6.0.1-beta
5+
-----------
66

77
* Fixed conflicts with `isnan()` and `isinf()` macros (issue #752)
88

@@ -486,52 +486,3 @@ However, you should not see this as an invitation to use the `String` class.
486486
The `String` class is **bad** because it uses dynamic memory allocation.
487487
Compared to static allocation, it compiles to a bigger, slower program, and is less predictable.
488488
You certainly don't want that in an embedded environment!
489-
490-
v4.6
491-
----
492-
493-
* Fixed segmentation fault in `DynamicJsonBuffer` when memory allocation fails (issue #92)
494-
495-
v4.5
496-
----
497-
498-
* Fixed buffer overflow when input contains a backslash followed by a terminator (issue #81)
499-
500-
**Upgrading is recommended** since previous versions contain a potential security risk.
501-
502-
Special thanks to [Giancarlo Canales Barreto](https://github.com/gcanalesb) for finding this nasty bug.
503-
504-
v4.4
505-
----
506-
507-
* Added `JsonArray::measureLength()` and `JsonObject::measureLength()` (issue #75)
508-
509-
v4.3
510-
----
511-
512-
* Added `JsonArray::removeAt()` to remove an element of an array (issue #58)
513-
* Fixed stack-overflow in `DynamicJsonBuffer` when parsing huge JSON files (issue #65)
514-
* Fixed wrong return value of `parseArray()` and `parseObject()` when allocation fails (issue #68)
515-
516-
v4.2
517-
----
518-
519-
* Switched back to old library layout (issues #39, #43 and #45)
520-
* Removed global new operator overload (issue #40, #45 and #46)
521-
* Added an example with EthernetServer
522-
523-
v4.1
524-
----
525-
526-
* Added DynamicJsonBuffer (issue #19)
527-
528-
v4.0
529-
----
530-
531-
* Unified parser and generator API (issue #23)
532-
* Updated library layout, now requires Arduino 1.0.6 or newer
533-
534-
> ### BREAKING CHANGES :warning:
535-
>
536-
> API changed significantly since v3, see [Migrating code to the new API](https://arduinojson.org/doc/migration/).
537-

appveyor.yml

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

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.0.0-beta",
10+
"version": "6.0.1-beta",
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.0.0-beta
2+
version=6.0.1-beta
33
author=Benoit Blanchon <blog.benoitblanchon.fr>
44
maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
55
sentence=An efficient and elegant JSON library for Arduino.

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.0.0-beta"
7+
#define ARDUINOJSON_VERSION "6.0.1-beta"
88
#define ARDUINOJSON_VERSION_MAJOR 6
99
#define ARDUINOJSON_VERSION_MINOR 0
10-
#define ARDUINOJSON_VERSION_REVISION 0
10+
#define ARDUINOJSON_VERSION_REVISION 1

0 commit comments

Comments
 (0)
0