File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 7
7
* Removed the automatic expansion of ` DynamicJsonDocument ` , it now has a fixed capacity.
8 8
* Restored the monotonic allocator because the code was getting too big
9
9
* Reduced the memory usage
10
+ * Removed spurious files in the Particle library
10
11
11
12
v6.6.0-beta (2018-11-13)
12
13
-----------
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments