diff --git a/README.md b/README.md index ee7b991..c91ef3d 100644 --- a/README.md +++ b/README.md @@ -31,3 +31,12 @@ Note: It currently requires a 64-bit processor, and on macOS, an ARM-based proce #### Recommended IDE Setup - [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) + +## Release + +- Update `zebrad` binaries for target platforms by: + - Running `cargo b --release` in the Zebra workspace + - Copying the binary into `src-tauri/binaries` and adding the target as a suffix to the file name +- Tag and publish a new release on Github +- Run `pnpm run tauri build` on target platforms, and +- Upload the bundle files produced by Tauri as assets on the Github release. \ No newline at end of file diff --git a/package.json b/package.json index acff5e1..614d7ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zebra-app", - "version": "0.0.0-alpha.2", + "version": "0.0.0-alpha.4", "description": "", "type": "module", "pnpm": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index c67ddb7..9194fc3 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4459,7 +4459,7 @@ checksum = "e63e71c4b8bd9ffec2c963173a4dc4cbde9ee96961d4fcb4429db9929b606c34" [[package]] name = "zebra-app" -version = "0.0.0-alpha.2" +version = "0.0.0-alpha.4" dependencies = [ "serde", "serde_json", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 75e4da1..704d425 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zebra-app" -version = "0.0.0-alpha.2" +version = "0.0.0-alpha.4" description = "Zebra App" authors = ["you"] edition = "2021"