diff options
Diffstat (limited to 'src-tauri')
| -rw-r--r-- | src-tauri/CHANGELOG.md | 6 | ||||
| -rw-r--r-- | src-tauri/Cargo.toml | 4 | ||||
| -rw-r--r-- | src-tauri/tauri.conf.json | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/src-tauri/CHANGELOG.md b/src-tauri/CHANGELOG.md index 4b2d22b..90861d9 100644 --- a/src-tauri/CHANGELOG.md +++ b/src-tauri/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.2.0-alpha.2 + +### New Features + +- [`ef56081`](https://github.com/HydroRoll-Team/DropOut/commit/ef560813c68c113325d8d84ff13cd419eb6583df): Add `ts-rs` for generating TypeScript bindings. ([#77](https://github.com/HydroRoll-Team/DropOut/pull/77) by @HsiangNianian) + ## v0.2.0-alpha.1 ### New Features diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 29da3a1..5ba731c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dropout" -version = "0.2.0-alpha.1" +version = "0.2.0-alpha.2" edition = "2024" authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" @@ -19,7 +19,7 @@ assets = [ bytes = "1.11.0" chrono = "0.4" dirs = "5.0" -dropout-macros = { path = "../crates/macros", version = "0.1.0" } +dropout-macros = { path = "../crates/macros", version = "0.1.0-alpha.0" } env_logger = "0.9" flate2 = "1.0" futures = "0.3" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 1f7ebe9..96ac48b 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "dropout", - "version": "0.2.0-alpha.1", + "version": "0.2.0-alpha.2", "identifier": "com.dropout.launcher", "build": { "beforeDevCommand": "pnpm --filter @dropout/ui dev", |