diff --git a/CHANGELOG.md b/CHANGELOG.md index dadd178..c0c13a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,23 @@ its name. ### Fixed bugs +## [v0.3.0] - 2024-04-11 + +Make `diffedit3` easier to install + +### Breaking changes + +Renamed the `diffedit3-web` binary to `diffedit3` + +The `diffedit3-gui` release artifact is now marked as unsupported in +its name. + +### New features + +`diffedit3` can now be installed with `cargo binstall diffedit3`. + +### Fixed bugs + ## [v0.2.0] - 2024-04-05 diff --git a/Cargo.lock b/Cargo.lock index 20528ce..f8d5e9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -671,7 +671,7 @@ dependencies = [ [[package]] name = "diffedit3" -version = "0.2.0" +version = "0.3.0" dependencies = [ "assert_matches", "clap", @@ -695,7 +695,7 @@ dependencies = [ [[package]] name = "diffedit3-gui" -version = "0.2.0" +version = "0.3.0" dependencies = [ "clap", "diffedit3", diff --git a/Cargo.toml b/Cargo.toml index abdf52a..46a0bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ include = ["/src", "/webapp/dist", "/*.md"] pkg-url = "{ repo }/releases/download/v{ version }/diffedit3-v{ version }-{ target }.{ archive-format }" [workspace.package] -version = "0.2.0" # Also update package.json and tauri.conf.json +version = "0.3.0" # Also update package.json and tauri.conf.json edition = "2021" license = "Apache-2.0" readme = "README.md" diff --git a/backend-tauri/tauri.conf.json b/backend-tauri/tauri.conf.json index fcf0f77..1b8c8af 100644 --- a/backend-tauri/tauri.conf.json +++ b/backend-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "diffedit3-gui", - "version": "0.2.0" + "version": "0.3.0" }, "tauri": { "allowlist": { diff --git a/webapp/package.json b/webapp/package.json index 0b482c3..c96faf2 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,7 +1,7 @@ { "name": "diffedit3-webapp", "private": true, - "version": "0.2.0", + "version": "0.3.0", "type": "module", "dependencies": { "@tauri-apps/api": "^1.5.3",