8000 Merge branch 'master' into 6.x · java64/ArduinoJson@1ad97eb · GitHub
[go: up one dir, main page]

Skip to content

Commit 1ad97eb

Browse files
committed
Merge branch 'master' into 6.x
2 parents 1d942cd + ef12c74 commit 1ad97eb

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ HEAD
77
* Removed the automatic expansion of `DynamicJsonDocument`, it now has a fixed capacity.
88
* Restored the monotonic allocator because the code was getting too big
99
* Reduced the memory usage
10+
* Removed spurious files in the Particle library
1011

1112
v6.6.0-beta (2018-11-13)
1213
-----------

scripts/publish-particle-library.sh

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#!/usr/bin/env bash
2+
3+
set -eu
4+
5+
SOURCE_DIR="$(dirname "$0")/.."
6+
WORK_DIR=$(mktemp -d)
7+
trap 'rm -rf "$WORK_DIR"' EXIT
8+
9+
cp "$SOURCE_DIR/README.md" "$WORK_DIR/README.md"
10+
cp "$SOURCE_DIR/CHANGELOG.md" "$WORK_DIR/CHANGELOG.md"
11+
cp "$SOURCE_DIR/library.properties" "$WORK_DIR/library.properties"
12+
cp "$SOURCE_DIR/LICENSE.md" "$WORK_DIR/LICENSE.txt"
13+
cp -r "$SOURCE_DIR/src" "$WORK_DIR/"
14+
cp -r "$SOURCE_DIR/examples" "$WORK_DIR/"
15+
16+
cd "$WORK_DIR"
17+
particle library upload
18+
particle library publish

0 commit comments

Comments
 (0)
0