diff --git a/CHANGELOG.md b/CHANGELOG.md index 48b53d4..fb9e45f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed bugs + +## [v0.2.0] - 2024-04-05 + +### Breaking changes + +* Major version update to `poem` dependency + +### New features + +### Fixed bugs + * A bug that prevented saving the comparison when a file's dir existed on the left side but not on the right side. @@ -20,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * There are now some tests; GitHub CI runs them. + ## [v0.1.2] - 2024-03-18 ### New features diff --git a/Cargo.lock b/Cargo.lock index b7810f3..4d0e7e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -671,7 +671,7 @@ dependencies = [ [[package]] name = "diffedit3" -version = "0.1.2" +version = "0.2.0" dependencies = [ "assert_matches", "clap", @@ -695,7 +695,7 @@ dependencies = [ [[package]] name = "diffedit3-gui" -version = "0.1.2" +version = "0.2.0" dependencies = [ "clap", "diffedit3", diff --git a/Cargo.toml b/Cargo.toml index 5a85ed9..ad86c65 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = { workspace = true } include = ["/src", "/webapp/dist", "/*.md"] [workspace.package] -version = "0.1.2" # Also update package.json and tauri.conf.json +version = "0.2.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 83a6288..fcf0f77 100644 --- a/backend-tauri/tauri.conf.json +++ b/backend-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "diffedit3-gui", - "version": "0.1.2" + "version": "0.2.0" }, "tauri": { "allowlist": { diff --git a/package-lock.json b/package-lock.json index 0537c73..6199d64 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1874,7 +1874,7 @@ "dev": true }, "webapp": { - "version": "0.1.2", + "version": "0.2.0", "dependencies": { "@tauri-apps/api": "^1.5.3", "codemirror": "^5.65", diff --git a/webapp/package.json b/webapp/package.json index 8def946..0a4f8c2 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,7 +1,7 @@ { "name": "diffedit3-webapp", "private": true, - "version": "0.1.2", + "version": "0.2.0", "type": "module", "dependencies": { "@tauri-apps/api": "^1.5.3",