Skip to content

Commit 5aa9817

Browse files
authored
0.8.0 Release (#55)
1 parent 56da4dd commit 5aa9817

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

.circleci/config.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,17 @@ jobs:
1515
- restore_cache:
1616
key: gradle-{{ checksum "settings.gradle" }}-{{ checksum "build.gradle" }}-{{ checksum "mcumgr-core/build.gradle" }}-{{ checksum "mcumgr-ble/build.gradle" }}
1717
- run:
18-
name: Assemble Debug
19-
command: ./gradlew assembleDebug
18+
name: Android Assemble Debug
19+
command: >
20+
./gradlew
21+
-PdisablePreDex
22+
--max-workers 2
23+
--no-daemon
24+
--stacktrace
25+
assembleDebug
26+
- run:
27+
name: Keyring
28+
command: mkdir -p ~/.gnupg && echo "$SIGNING_SECRET_KEY_RING" | base64 --decode > ~/.gnupg/secring.gpg
2029
- run:
2130
name: Deploy
2231
command: .circleci/deploy.sh

.circleci/deploy.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ elif [ "$CIRCLE_BRANCH" != "$BRANCH" ]; then
1717
echo "Skipping snapshot deployment: wrong branch. Expected '$BRANCH' but was '$CIRCLE_BRANCH'."
1818
else
1919
echo "Deploying snapshot..."
20-
./gradlew uploadArchives
20+
./gradlew uploadArchives \
21+
-Psigning.keyId="$SIGNING_KEY_ID" \
22+
-Psigning.password="$SIGNING_PASSWORD" \
23+
-Psigning.secretKeyRingFile="$HOME/.gnupg/secring.gpg"
2124
echo "Snapshot deployed!"
2225
fi

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ A transport agnostic implementation of the McuManager protocol. Contains a defau
88
Contains the core and a BLE transport implementation using Nordic's [Android-BLE-Library v2](https://github.com/NordicSemiconductor/Android-BLE-Library/tree/develop).
99

1010
```
11-
implementation 'io.runtime.mcumgr:mcumgr-ble:0.7.0'
11+
implementation 'io.runtime.mcumgr:mcumgr-ble:0.8.0'
1212
```
1313

1414
#### McuManager Core
1515
Core dependency only. Use if you want to provide your own transport implementation.
1616

1717
```
18-
implementation 'io.runtime.mcumgr:mcumgr-core:0.7.0'
18+
implementation 'io.runtime.mcumgr:mcumgr-core:0.8.0'
1919
```
2020

2121
# Introduction

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=0.7.0-SNAPSHOT
1+
VERSION_NAME=0.8.0
22
GROUP=io.runtime.mcumgr
33

44
POM_DESCRIPTION=A mobile management library for devices running Apache Mynewt and Zephyr (DFU, logs, stats, config, etc.)

0 commit comments

Comments
 (0)