diff --git a/CHANGELOG.md b/CHANGELOG.md index 60b3141..d1ceba7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +## [0.2.0] - 2026-04-08 + +### Features + +- Scroll to current contact in sidebar by default +- Clicking off sidebar on small windows closes it +- Sort contacts sidebar ignoring case +- Report version information + +### Refactor + +- Cloak input elements while alpine.js loads + +### Performance + +- *(test)* Test performance improvements +- Large cache time on immutable hashed statics + +### Testing + +- Deflake by waiting for Save response +- Open sidebar on mobile + +### ⚙️ Miscellaneous Tasks + +- Prepare for tagged releases + ## [0.1.0] - 2026-04-05 # Features diff --git a/Cargo.lock b/Cargo.lock index 8d6aae0..79b598d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1560,7 +1560,7 @@ dependencies = [ [[package]] name = "mascarpone" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index 3d73af5..b348f60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mascarpone" -version = "0.1.0" +version = "0.2.0" edition = "2024" [profile.release] diff --git a/Taskfile b/Taskfile index a9bc978..9ca36c9 100755 --- a/Taskfile +++ b/Taskfile @@ -48,7 +48,7 @@ release() { set -euo pipefail bash e2e/Taskfile playwright:ci _cargo test - new_tag=$(git-cliff --bumped-version) + new_tag=$(git-cliff --unreleased --bumped-version) git tag -m "$new_tag" "$new_tag" cargo set-version "${new_tag#v}" mv CHANGELOG.md CHANGELOG.old