diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 469f47b8..3cd4a7d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -77,6 +77,9 @@ jobs: - name: Release id: create-release uses: softprops/action-gh-release@v1 + with: + body_path: release_notes.md + generate_release_notes: true # Upload app-universal-release APK artifact asset - name: 'Download universal APK Artifact' diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 95154210..9499f8d6 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "frontend", - "version": "0.5.0", + "version": "0.5.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "frontend", - "version": "0.5.0", + "version": "0.5.1", "license": "ISC", "dependencies": { "@babel/plugin-proposal-class-properties": "^7.16.7", diff --git a/frontend/package.json b/frontend/package.json index fe721387..b560f45c 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "frontend", - "version": "0.5.0", + "version": "0.5.1", "description": "", "main": "index.js", "scripts": { diff --git a/mobile/android/app/build.gradle b/mobile/android/app/build.gradle index 4a02fb87..632df2c0 100644 --- a/mobile/android/app/build.gradle +++ b/mobile/android/app/build.gradle @@ -149,7 +149,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 1 - versionName "0.5.0-alpha" + versionName "0.5.1-alpha" buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString() if (isNewArchitectureEnabled()) { diff --git a/mobile/package-lock.json b/mobile/package-lock.json index b95d7589..37fd33e1 100644 --- a/mobile/package-lock.json +++ b/mobile/package-lock.json @@ -1,12 +1,12 @@ { "name": "robosats", - "version": "0.5.0", + "version": "0.5.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "robosats", - "version": "0.5.0", + "version": "0.5.1", "dependencies": { "@react-native-clipboard/clipboard": "^1.11.2", "@react-native-community/netinfo": "^9.3.9", diff --git a/mobile/package.json b/mobile/package.json index 35a7a9a2..d10e51c0 100644 --- a/mobile/package.json +++ b/mobile/package.json @@ -1,6 +1,6 @@ { "name": "robosats", - "version": "0.5.0", + "version": "0.5.1", "private": true, "scripts": { "android": "react-native run-android", diff --git a/release_notes.md b/release_notes.md new file mode 100644 index 00000000..bc746500 --- /dev/null +++ b/release_notes.md @@ -0,0 +1,45 @@ +RoboSats v0.5.1 is now out! :rocket: + +## Changes: +- API requests to POST /order that contain important information, i.e, the payout invoice or address, are now signed by the robot PGP key and validated by the coordinator. This way, on a multi coordinator set up, a robot can potentially be re-used across several coordinators without risk of identity stealing (auth token) by a rogue coordinator (alla man-in-the-middle). +- New maker form switch for exact and range amounts by @JooVLC +- Fix negative premium field by @JooVLC +- Self-hosted node app has been fully re-worked. It is now based on Alpine (size went down from 130MB to 7MB) and the ram-heavy dependencies have been dropped. The app is now lighter to run and fully self-contained. + +# Android + +**[Click to download universal RoboSats APK for Android](https://github.com/RoboSats/robosats/releases/download/v0.5.1-alpha/robosats-v0.5.1.alpha-universal.apk)** +Smaller bundles for each CPU architecture available in the attachments. + +### Verify the app using GPG: + +1. [Download the ascii armored signature](https://github.com/Reckless-Satoshi/robosats/releases/download/v0.5.1-alpha/robosats-v0.5.1.alpha-universal.apk.asc) + +2. Run this command on a directory that contains the apk file and and the ascii armored signature. +`gpg --verify robosats-v0.5.1.alpha-universal.apk.asc` + +3. Verify the signer is actually Reckless-Satoshi (fingerprints match): [B4AB5F19113D4125DDF217739C4585B561315571](https://keys.openpgp.org/vks/v1/by-fingerprint/B4AB5F19113D4125DDF217739C4585B561315571) + +Alternatively you can also verify with the release with the SHA256 checksum. + +Known missing features: +- Android APK has no sound or notifications. + + +# Docker Images + +[Coordinator Backend Image v0.5.1-alpha (Docker Hub)](https://hub.docker.com/r/recksato/robosats/tags?page=1&name=v0.5.1-alpha) + + +```bash +docker pull recksato/robosats:v0.5.1-alpha +``` + +[Client App Image v0.5.1-alpha (Docker Hub)](https://hub.docker.com/r/recksato/robosats-client/tags?page=1&name=v0.5.1-alpha) + +```bash +docker pull recksato/robosats-client:v0.5.1-alpha +``` + +See [nodeapp/docker-compose.yml](https://github.com/Reckless-Satoshi/robosats/blob/2cd9d748706a8dcc0f03006b483acc6000e0572a/nodeapp/docker-compose.yml) for an example docker-compose usage of the `robosats-client` image. + diff --git a/version.json b/version.json index a5f53327..817ec88a 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { "major": 0, "minor": 5, - "patch": 0 + "patch": 1 }