From baa4de6b5495c8aec36d974db17a30985966f50e Mon Sep 17 00:00:00 2001 From: Ilya Grigoriev Date: Sat, 4 May 2024 19:49:58 -0700 Subject: [PATCH] v0.4.0 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- backend-tauri/tauri.conf.json | 2 +- webapp/package.json | 2 +- 5 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71b36a3..753466d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed bugs +## [v0.4.0] - 2024-05-04 + +### Breaking changes + +* The `--port-range` option was removed. Instead, `--port` can now be repeated and accepts dash-separated ranges. For example, the default is now equivalent to `--port 8080-8090 --port 0`. + +* This also corresponds to a breaking change to the `local_server` library interface + ## [v0.3.0] - 2024-04-11 Make `diffedit3` easier to install diff --git a/Cargo.lock b/Cargo.lock index f0fb900..172ba2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -671,7 +671,7 @@ dependencies = [ [[package]] name = "diffedit3" -version = "0.3.0" +version = "0.4.0" dependencies = [ "assert_matches", "clap", @@ -695,7 +695,7 @@ dependencies = [ [[package]] name = "diffedit3-gui" -version = "0.3.0" +version = "0.4.0" dependencies = [ "clap", "diffedit3", diff --git a/Cargo.toml b/Cargo.toml index 531d9d7..c9dcd37 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.3.0" # Also update package.json and tauri.conf.json +version = "0.4.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 1b8c8af..8db7b80 100644 --- a/backend-tauri/tauri.conf.json +++ b/backend-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "diffedit3-gui", - "version": "0.3.0" + "version": "0.4.0" }, "tauri": { "allowlist": { diff --git a/webapp/package.json b/webapp/package.json index c96faf2..e305bc4 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,7 +1,7 @@ { "name": "diffedit3-webapp", "private": true, - "version": "0.3.0", + "version": "0.4.0", "type": "module", "dependencies": { "@tauri-apps/api": "^1.5.3",