File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 52
52
>
53
53
> CAUTION: the key is now read only!
54
54
55
- v6.2.3-beta
55
+ v6.2.3-beta (2018-07-19)
56
56
-----------
57
57
58
58
* Fixed exception when using Flash strings as object keys (issue #784)
59
59
60
- v6.2.2-beta
60
+ v6.2.2-beta (2018-07-18)
61
61
-----------
62
62
63
63
* Fixed `invalid application of 'sizeof' to incomplete type '__FlashStringHelper'` (issue #783)
64
64
* Fixed `char[]` not duplicated when passed to `JsonVariant::operator[]`
65
65
66
- v6.2.1-beta
66
+ v6.2.1-beta (2018-07-17)
67
67
-----------
68
68
69
69
* Fixed `JsonObject` not inserting keys of type `String` (issue #782)
70
70
71
- v6.2.0-beta
71
+ v6.2.0-beta (2018-07-12)
72
72
-----------
73
73
74
74
* Disabled lazy number deserialization (issue #772)
@@ -97,7 +97,7 @@ v6.2.0-beta
97
97
> object["values"] = serialized("[1,2,3,4]");
98
98
> ```
99
99
100
- v6.1.0-beta
100
+ v6.1.0-beta (2018-07-02)
101
101
-----------
102
102
103
103
* Return `JsonArray` and `JsonObject` by value instead of reference (issue #309)
@@ -127,12 +127,12 @@ v6.1.0-beta
127
127
> }
128
128
> ```
129
129
130
- v6.0.1-beta
130
+ v6.0.1-beta (2018-06-11)
131
131
-----------
132
132
133
133
* Fixed conflicts with `isnan()` and `isinf()` macros (issue #752)
134
134
135
- v6.0.0-beta
135
+ v6.0.0-beta (2018-06-07)
136
136
-----------
137
137
138
138
* Added `DynamicJsonDocument` and `StaticJsonDocument`
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- set -eux
3
+ set -eu
4
4
5
5
cd " $( dirname $0 ) /.."
6
6
7
7
VERSION=" $1 "
8
+ DATE=$( date +%F)
8
9
IFS=" .-" read MAJOR MINOR REVISION EXTRA < <( echo " $VERSION " )
9
10
TAG=" v$VERSION "
10
11
UNDERLINE=$( printf -- ' -%.0s' $( seq 1 ${# TAG} ) )
11
12
12
- sed -i~ -bE " 4s/HEAD/$TAG /; 5s/-+/$UNDERLINE /" CHANGELOG.md
13
+ sed -i~ -bE " 4s/HEAD/$TAG ( $DATE ) /; 5s/-+/$UNDERLINE /" CHANGELOG.md
13
14
rm CHANGELOG.md* ~
14
15
sed -i~ -bE " s/\" version\" :.*$/\" version\" : \" $VERSION \" ,/" library.json
15
16
rm library.json* ~
You can’t perform that action at this time.
0 commit comments