diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 816df2d5..2537c1f1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.1" + ".": "0.4.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 90989fa1..66bf200d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ Released entries are appended automatically from Conventional Commits when the "chore: release" pull request is merged. The project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.0](https://github.com/pmaxhogan/driven/compare/v0.3.1...v0.4.0) (2026-06-27) + + +### Features + +* **ui:** global backup progress bar in the app header ([#55](https://github.com/pmaxhogan/driven/issues/55)) ([b7513b5](https://github.com/pmaxhogan/driven/commit/b7513b55bf1614bcef1081857389f57118bb8ae2)) +* **ui:** sticky restore action bar and virtualized large lists ([#54](https://github.com/pmaxhogan/driven/issues/54)) ([4631225](https://github.com/pmaxhogan/driven/commit/4631225cc7fda29e8348e3bb00915a0a47b81e31)) + + +### Bug Fixes + +* **ui:** keep the activity screen smooth during uploads ([#56](https://github.com/pmaxhogan/driven/issues/56)) ([44f3853](https://github.com/pmaxhogan/driven/commit/44f38539f00e0cccf8d4b7501b79cefbf4f41cc2)) + ## [0.3.1](https://github.com/pmaxhogan/driven/compare/v0.3.0...v0.3.1) (2026-06-26) diff --git a/Cargo.lock b/Cargo.lock index 91468b45..1fd11875 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1324,7 +1324,7 @@ dependencies = [ [[package]] name = "driven-app" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1368,7 +1368,7 @@ dependencies = [ [[package]] name = "driven-chaos" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1393,7 +1393,7 @@ dependencies = [ [[package]] name = "driven-cli" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "assert_cmd", @@ -1412,7 +1412,7 @@ dependencies = [ [[package]] name = "driven-core" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1443,7 +1443,7 @@ dependencies = [ [[package]] name = "driven-crypto" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "base32", @@ -1461,7 +1461,7 @@ dependencies = [ [[package]] name = "driven-drive" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1484,7 +1484,7 @@ dependencies = [ [[package]] name = "driven-net" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1498,7 +1498,7 @@ dependencies = [ [[package]] name = "driven-power" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1513,7 +1513,7 @@ dependencies = [ [[package]] name = "driven-test-fixtures" -version = "0.3.1" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -1529,7 +1529,7 @@ dependencies = [ [[package]] name = "driven-vss" -version = "0.3.1" +version = "0.4.0" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 8c0d0c7f..b3e16fbc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ exclude = [ ] [workspace.package] -version = "0.3.1" +version = "0.4.0" edition = "2021" rust-version = "1.85" authors = ["Driven contributors"] diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 04c2d6a2..5731bb4e 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Driven", - "version": "0.3.1", + "version": "0.4.0", "identifier": "app.driven", "build": { "frontendDist": "../ui/dist", diff --git a/ui/package.json b/ui/package.json index 631bf73e..30b51187 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,7 +1,7 @@ { "name": "driven-ui", "private": true, - "version": "0.3.1", + "version": "0.4.0", "type": "module", "scripts": { "dev": "vite",