Skip to content

Commit 86da392

Browse files
committed
update version to 1.1.0
1 parent 71c8065 commit 86da392

File tree

3 files changed

+36
-9
lines changed

3 files changed

+36
-9
lines changed

.github/workflows/githubci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,8 @@ jobs:
99
matrix:
1010
arduino-platform:
1111
# Alphabetical order
12-
- 'cluenrf52840'
13-
- 'cplaynrf52840'
14-
- 'feather52832'
15-
- 'feather52840'
16-
- 'feather52840sense'
17-
- 'itsybitsy52840'
18-
- 'ledglasses_nrf52840'
12+
- 'xiaonRF52840'
13+
- 'xiaonRF52840Sense'
1914

2015
runs-on: ubuntu-latest
2116

@@ -43,7 +38,7 @@ jobs:
4338
4439
- name: Install BSP and Libraries
4540
env:
46-
BSP_URL: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json
41+
BSP_URL: https://files.seeedstudio.com/arduino/package_seeeduino_boards_index.json
4742
BSP_PATH: .arduino15/packages/adafruit/hardware/nrf52
4843
run: |
4944
arduino-cli config init

extras/pack_release.sh

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
#!/bin/bash -ex
2+
3+
# pack.*.bash - Bash script to help packaging samd core releases.
4+
# Copyright (c) 2015 Arduino LLC. All right reserved.
5+
#
6+
# This library is free software; you can redistribute it and/or
7+
# modify it under the terms of the GNU Lesser General Public
8+
# License as published by the Free Software Foundation; either
9+
# version 2.1 of the License, or (at your option) any later version.
10+
#
11+
# This library is distributed in the hope that it will be useful,
12+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14+
# Lesser General Public License for more details.
15+
#
16+
# You should have received a copy of the GNU Lesser General Public
17+
# License along with this library; if not, write to the Free Software
18+
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19+
20+
VERSION=`grep version= platform.txt | sed 's/version=//g'`
21+
22+
PWD=`pwd`
23+
FOLDERNAME=`basename $PWD`
24+
THIS_SCRIPT_NAME=`basename $0`
25+
26+
rm -f samd-$VERSION.tar.bz2
27+
28+
cd ..
29+
tar --transform "s|$FOLDERNAME|$FOLDERNAME-$VERSION|g" --exclude=extras/** --exclude=.git* --exclude=.idea -cjf nrf52-$VERSION.tar.bz2 $FOLDERNAME
30+
cd -
31+
32+
mv ../nrf52-$VERSION.tar.bz2 .

platform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818

1919
name=Seeed nRF52 Boards
20-
version=1.0.0
20+
version=1.1.0
2121

2222
# Compile variables
2323
# -----------------

0 commit comments

Comments
 (0)