From 45460d4c31c793985970a53f125d1a5da42c8d25 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 6 May 2025 16:18:21 -0700 Subject: [PATCH] chore(release): prepare for release 18.6.0 (#2740) Co-authored-by: Ellie Huxtable --- CHANGELOG.md | 7 +++++++ CONTRIBUTORS | 1 + Cargo.lock | 22 +++++++++++----------- Cargo.toml | 2 +- crates/atuin-client/Cargo.toml | 2 +- crates/atuin-daemon/Cargo.toml | 6 +++--- crates/atuin-dotfiles/Cargo.toml | 4 ++-- crates/atuin-history/Cargo.toml | 2 +- crates/atuin-kv/Cargo.toml | 4 ++-- crates/atuin-scripts/Cargo.toml | 4 ++-- crates/atuin-server-database/Cargo.toml | 2 +- crates/atuin-server-postgres/Cargo.toml | 4 ++-- crates/atuin-server/Cargo.toml | 4 ++-- crates/atuin/Cargo.toml | 18 +++++++++--------- 14 files changed, 45 insertions(+), 37 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fe1688c..2aae34db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,17 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### Bug Fixes + +- Selection vs render issue ([#2706](https://github.com/atuinsh/atuin/issues/2706)) + + ### Features - *(stats)* Add jj to default common subcommands ([#2708](https://github.com/atuinsh/atuin/issues/2708)) - Delete duplicate history ([#2697](https://github.com/atuinsh/atuin/issues/2697)) +- Sort `atuin store status` output ([#2719](https://github.com/atuinsh/atuin/issues/2719)) +- Implement KV as a write-through cache ([#2732](https://github.com/atuinsh/atuin/issues/2732)) ### Miscellaneous Tasks diff --git a/CONTRIBUTORS b/CONTRIBUTORS index da47d98d..d7c1074d 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -176,6 +176,7 @@ Pierluigi <82404704+IoSonoPiero@users.noreply.github.com> Plamen Dimitrov Poliorcetics postmath +printfn <1643883+printfn@users.noreply.github.com> Qiming Xu <33349132+xqm32@users.noreply.github.com> Rain Ramses diff --git a/Cargo.lock b/Cargo.lock index d0c51784..95ec9442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,7 +221,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atuin" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "arboard", "async-trait", @@ -269,7 +269,7 @@ dependencies = [ [[package]] name = "atuin-client" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "async-trait", "atuin-common", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "atuin-common" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "base64 0.22.1", "directories", @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "atuin-daemon" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "atuin-client", "atuin-dotfiles", @@ -371,7 +371,7 @@ dependencies = [ [[package]] name = "atuin-dotfiles" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "atuin-client", "atuin-common", @@ -385,7 +385,7 @@ dependencies = [ [[package]] name = "atuin-history" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "atuin-client", "crossterm", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "atuin-kv" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "atuin-client", "atuin-common", @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "atuin-scripts" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "atuin-client", "atuin-common", @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "atuin-server" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "argon2", "async-trait", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "atuin-server-database" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "async-trait", "atuin-common", @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "atuin-server-postgres" -version = "18.6.0-beta.1" +version = "18.6.0" dependencies = [ "async-trait", "atuin-common", diff --git a/Cargo.toml b/Cargo.toml index 73152513..549f88e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ resolver = "2" exclude = ["ui/backend"] [workspace.package] -version = "18.6.0-beta.1" +version = "18.6.0" authors = ["Ellie Huxtable "] rust-version = "1.86" license = "MIT" diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index aa887f22..0a68eb2a 100644 --- a/crates/atuin-client/Cargo.toml +++ b/crates/atuin-client/Cargo.toml @@ -19,7 +19,7 @@ daemon = [] check-update = [] [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index be7f7c2b..b32c45b2 100644 --- a/crates/atuin-daemon/Cargo.toml +++ b/crates/atuin-daemon/Cargo.toml @@ -14,9 +14,9 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.0-beta.1" } -atuin-history = { path = "../atuin-history", version = "18.6.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.6.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.0" } +atuin-history = { path = "../atuin-history", version = "18.6.0" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index 3760ddac..e67bd418 100644 --- a/crates/atuin-dotfiles/Cargo.toml +++ b/crates/atuin-dotfiles/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } -atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-client = { path = "../atuin-client", version = "18.6.0" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index 4643456a..8951ed5c 100644 --- a/crates/atuin-history/Cargo.toml +++ b/crates/atuin-history/Cargo.toml @@ -14,7 +14,7 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.6.0" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml index ec4f9228..7a33b09d 100644 --- a/crates/atuin-kv/Cargo.toml +++ b/crates/atuin-kv/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1" } -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml index d522d689..c57c583b 100644 --- a/crates/atuin-scripts/Cargo.toml +++ b/crates/atuin-scripts/Cargo.toml @@ -14,8 +14,8 @@ readme.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1" } -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.6.0" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index fc71e09d..aad4f0c9 100644 --- a/crates/atuin-server-database/Cargo.toml +++ b/crates/atuin-server-database/Cargo.toml @@ -10,7 +10,7 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 0ebffa16..507b0c08 100644 --- a/crates/atuin-server-postgres/Cargo.toml +++ b/crates/atuin-server-postgres/Cargo.toml @@ -10,8 +10,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } -atuin-server-database = { path = "../atuin-server-database", version = "18.6.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.6.0" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index c4ef4cad..c158c46f 100644 --- a/crates/atuin-server/Cargo.toml +++ b/crates/atuin-server/Cargo.toml @@ -11,8 +11,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } -atuin-server-database = { path = "../atuin-server-database", version = "18.6.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.6.0" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index 5285ebde..c689d00e 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -42,15 +42,15 @@ clipboard = ["arboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.6.0-beta.1", optional = true } -atuin-server = { path = "../atuin-server", version = "18.6.0-beta.1", optional = true } -atuin-client = { path = "../atuin-client", version = "18.6.0-beta.1", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "18.6.0-beta.1" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.0-beta.1" } -atuin-history = { path = "../atuin-history", version = "18.6.0-beta.1" } -atuin-daemon = { path = "../atuin-daemon", version = "18.6.0-beta.1", optional = true, default-features = false } -atuin-scripts = { path = "../atuin-scripts", version = "18.6.0-beta.1" } -atuin-kv = { path = "../atuin-kv", version = "18.6.0-beta.1" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.6.0", optional = true } +atuin-server = { path = "../atuin-server", version = "18.6.0", optional = true } +atuin-client = { path = "../atuin-client", version = "18.6.0", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "18.6.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.6.0" } +atuin-history = { path = "../atuin-history", version = "18.6.0" } +atuin-daemon = { path = "../atuin-daemon", version = "18.6.0", optional = true, default-features = false } +atuin-scripts = { path = "../atuin-scripts", version = "18.6.0" } +atuin-kv = { path = "../atuin-kv", version = "18.6.0" } log = { workspace = true } time = { workspace = true }