diff --git a/CHANGELOG.md b/CHANGELOG.md index 2da39f5..36f8ec3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### New features +### Fixed bugs + +## [v0.5.0] - 2025-09-29 + +### New features + * `diffedit3` now accepts files as arguments, not just dirs. So, `diffedit3 left_file right_file output_file` is now allowed. Mixing dirs and files is not allowed. @@ -19,8 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 and the pinning/collapsing controls are disabled. Allowing the user to collapse the only editor doesn't make much sense. -### Fixed bugs - ## [v0.4.0] - 2024-05-04 ### Breaking changes diff --git a/Cargo.lock b/Cargo.lock index c4997da..6ffb302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -687,7 +687,7 @@ dependencies = [ [[package]] name = "diffedit3" -version = "0.4.0" +version = "0.5.0" dependencies = [ "assert_matches", "clap", @@ -711,7 +711,7 @@ dependencies = [ [[package]] name = "diffedit3-gui" -version = "0.4.0" +version = "0.5.0" dependencies = [ "clap", "diffedit3", diff --git a/Cargo.toml b/Cargo.toml index 541ebba..876a978 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.4.0" # Also update package.json and tauri.conf.json +version = "0.5.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 8db7b80..3e158bd 100644 --- a/backend-tauri/tauri.conf.json +++ b/backend-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "diffedit3-gui", - "version": "0.4.0" + "version": "0.5.0" }, "tauri": { "allowlist": { diff --git a/webapp/package.json b/webapp/package.json index 77851d6..ff29dc4 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,7 +1,7 @@ { "name": "diffedit3-webapp", "private": true, - "version": "0.4.0", + "version": "0.5.0", "type": "module", "dependencies": { "@tauri-apps/api": "^1.5.3",