From 0627df2ad0a315c651c1d60145ca567cdf5dd30f Mon Sep 17 00:00:00 2001 From: Matt Gabrenya Date: Mon, 4 Nov 2024 16:30:33 -0500 Subject: [PATCH] Release v0.7.1 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- package-lock.json | 6 +++--- package.json | 5 +++-- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- ui/package.json | 2 +- 7 files changed, 16 insertions(+), 9 deletions(-) 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 80404db7..98dfcd9f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10591,7 +10591,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "volla_messages" -version = "0.7.0-beta" +version = "0.7.1" dependencies = [ "anyhow", "app_dirs2", diff --git a/package-lock.json b/package-lock.json index 7da31371..b104f3f4 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" ], @@ -8768,7 +8768,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 46fea7e0..0e15a8b5 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" @@ -26,7 +26,8 @@ "network: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\" \"npm run tauri dev\"", "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" + "tauri": "tauri", + "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 ad1e6420..d31216da 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "volla_messages" -version = "0.7.0-beta" +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 03ad65fb..c9c3980b 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",