diff --git a/Cargo.lock b/Cargo.lock index c2c2b85..d7b878b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2710,7 +2710,7 @@ dependencies = [ [[package]] name = "rompatch" -version = "0.1.0" +version = "0.2.0" dependencies = [ "lexopt", "rompatch-core", @@ -2718,7 +2718,7 @@ dependencies = [ [[package]] name = "rompatch-core" -version = "0.1.0" +version = "0.2.0" dependencies = [ "adler2", "bzip2-rs", @@ -2731,7 +2731,7 @@ dependencies = [ [[package]] name = "rompatch-gui" -version = "0.1.0" +version = "0.2.0" dependencies = [ "rompatch-core", "serde", diff --git a/Cargo.toml b/Cargo.toml index 5f81c7e..ffadde4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["crates/rompatch-core", "crates/rompatch", "crates/rompatch-gui"] exclude = ["fuzz"] [workspace.package] -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/GregTheGreek/rompatch-rs" diff --git a/crates/rompatch-gui/Cargo.toml b/crates/rompatch-gui/Cargo.toml index 1c6718c..da0358e 100644 --- a/crates/rompatch-gui/Cargo.toml +++ b/crates/rompatch-gui/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["rlib"] tauri-build = { version = "=2.6.1", features = [] } [dependencies] -rompatch-core = { version = "=0.1.0", path = "../rompatch-core", features = ["serde"] } +rompatch-core = { version = "=0.2.0", path = "../rompatch-core", features = ["serde"] } serde = { version = "=1.0.228", features = ["derive"] } serde_json = "=1.0.149" sha2 = "=0.10.9" diff --git a/crates/rompatch-gui/ui/package.json b/crates/rompatch-gui/ui/package.json index 3608fe2..99bcdd4 100644 --- a/crates/rompatch-gui/ui/package.json +++ b/crates/rompatch-gui/ui/package.json @@ -1,6 +1,6 @@ { "name": "rompatch-ui", - "version": "0.1.0", + "version": "0.2.0", "description": "React frontend for the rompatch native GUI", "private": true, "type": "module", diff --git a/crates/rompatch/Cargo.toml b/crates/rompatch/Cargo.toml index 3dc5233..3eb1ab9 100644 --- a/crates/rompatch/Cargo.toml +++ b/crates/rompatch/Cargo.toml @@ -11,7 +11,7 @@ name = "rompatch" path = "src/main.rs" [dependencies] -rompatch-core = { path = "../rompatch-core", version = "0.1.0" } +rompatch-core = { path = "../rompatch-core", version = "0.2.0" } lexopt = "0.3" [lints]