diff --git a/CHANGELOG.md b/CHANGELOG.md index 124c098f..8b602805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.7.1] - 2024-11-04 + +### Added +- Automated release builds in CI + + ## [0.7.0-beta] - 2024-10-23 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index d2f9191b..9caf3b0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10444,7 +10444,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "volla_messages" -version = "0.7.0-beta-rc.1" +version = "0.7.1" dependencies = [ "anyhow", "app_dirs2", diff --git a/example-qr-code-user.png b/example-qr-code-user.png new file mode 100644 index 00000000..088fb339 Binary files /dev/null and b/example-qr-code-user.png differ diff --git a/package-lock.json b/package-lock.json index a1548c2d..cc23cf2d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "volla_messages", - "version": "0.7.0-beta", + "version": "0.7.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "volla_messages", - "version": "0.7.0-beta", + "version": "0.7.1", "workspaces": [ "ui" ], @@ -9287,7 +9287,7 @@ } }, "ui": { - "version": "0.7.0-beta", + "version": "0.7.1", "dependencies": { "@buildyourwebapp/tauri-plugin-sharesheet": "0.0.1", "@lightningrodlabs/we-applet": "^0.17.0-dev.2", diff --git a/package.json b/package.json index b4cb9868..86c83aaa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "volla_messages", - "version": "0.7.0-beta", + "version": "0.7.1", "private": true, "workspaces": ["ui"], "scripts": { @@ -25,7 +25,7 @@ "start:android": "npm run build:happ && BOOTSTRAP_PORT=$(port) SIGNAL_PORT=$(port) INTERNAL_IP=$(internal-ip --ipv4) concurrently -k \"npm run local-services\" \"UI_PORT=1420 npm run -w ui start\" \"npm run tauri android dev\"", "launch": "concurrently-repeat \"npm run tauri dev\" $AGENTS", "tauri": "tauri", - "setup:happ-release": "curl -L https://github.com/holochain-apps/relay/releases/download/v0.7.0-beta/relay-0.7.0-beta.happ -o workdir/relay.happ" + "setup:happ-release": "curl -L https://github.com/holochain-apps/relay/releases/download/v0.7.1/relay-0.7.1.happ -o workdir/relay.happ" }, "devDependencies": { "@holochain-playground/cli": "^0.2.0", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 967a85e3..8ce26395 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "volla_messages" -version = "0.7.0-beta-rc.1" +version = "0.7.1" description = "Volla Messages" authors = ["Tibet Sprague", "Eric Harris-Braun"] license = "" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8a48f239..8b3d7ca3 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "Volla Messages", - "version": "0.7.0-beta", + "version": "0.7.1", "identifier": "com.volla.messages", "build": { "beforeBuildCommand": "npm run build -w ui", diff --git a/ui/package.json b/ui/package.json index 34343e58..c7add594 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "ui", - "version": "0.7.0-beta", + "version": "0.7.1", "private": true, "scripts": { "start": "vite --clearScreen false",