8000 Added date in change log · java64/ArduinoJson@58303d0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 58303d0

Browse files
committed
Added date in change log
1 parent e363991 commit 58303d0

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,23 +52,23 @@ HEAD
5252
>
5353
> CAUTION: the key is now read only!
5454
55-
v6.2.3-beta
55+
v6.2.3-beta (2018-07-19)
5656
-----------
5757
5858
* Fixed exception when using Flash strings as object keys (issue #784)
5959
60-
v6.2.2-beta
60+
v6.2.2-beta (2018-07-18)
6161
-----------
6262
6363
* Fixed `invalid application of 'sizeof' to incomplete type '__FlashStringHelper'` (issue #783)
6464
* Fixed `char[]` not duplicated when passed to `JsonVariant::operator[]`
6565
66-
v6.2.1-beta
66+
v6.2.1-beta (2018-07-17)
6767
-----------
6868
6969
* Fixed `JsonObject` not inserting keys of type `String` (issue #782)
7070
71-
v6.2.0-beta
71+
v6.2.0-beta (2018-07-12)
7272
-----------
7373
7474
* Disabled lazy number deserialization (issue #772)
@@ -97,7 +97,7 @@ v6.2.0-beta
9797
> object["values"] = serialized("[1,2,3,4]");
9898
> ```
9999
100-
v6.1.0-beta
100+
v6.1.0-beta (2018-07-02)
101101
-----------
102102
103103
* Return `JsonArray` and `JsonObject` by value instead of reference (issue #309)
@@ -127,12 +127,12 @@ v6.1.0-beta
127127
> }
128128
> ```
129129
130-
v6.0.1-beta
130+
v6.0.1-beta (2018-06-11)
131131
-----------
132132
133133
* Fixed conflicts with `isnan()` and `isinf()` macros (issue #752)
134134
135-
v6.0.0-beta
135+
v6.0.0-beta (2018-06-07)
136136
-----------
137137
138138
* Added `DynamicJsonDocument` and `StaticJsonDocument`

scripts/set-version.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
#!/usr/bin/env bash
22

3-
set -eux
3+
set -eu
44

55
cd "$(dirname $0)/.."
66

77
VERSION="$1"
8+
DATE=$(date +%F)
89
IFS=".-" read MAJOR MINOR REVISION EXTRA < <(echo "$VERSION")
910
TAG="v$VERSION"
1011
UNDERLINE=$(printf -- '-%.0s' $(seq 1 ${#TAG}))
1112

12-
sed -i~ -bE "4s/HEAD/$TAG/; 5s/-+/$UNDERLINE/" CHANGELOG.md
13+
sed -i~ -bE "4s/HEAD/$TAG ($DATE)/; 5s/-+/$UNDERLINE/" CHANGELOG.md
1314
rm CHANGELOG.md*~
1415
sed -i~ -bE "s/\"version\":.*$/\"version\": \"$VERSION\",/" library.json
1516
rm library.json*~

0 commit comments

Comments
 (0)
0