From 1e93b3129bc540ae8d2b996ba6aa64b93a732d99 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 13 Apr 2026 23:10:22 +0100 Subject: chore(release): prepare for release 18.14.1 (#3405) ## Checks - [ ] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [ ] I have checked that there are no existing pull requests for the same thing --- crates/atuin-client/Cargo.toml | 2 +- crates/atuin-daemon/Cargo.toml | 8 ++++---- 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-sqlite/Cargo.toml | 4 ++-- crates/atuin/Cargo.toml | 10 +++++----- 10 files changed, 22 insertions(+), 22 deletions(-) (limited to 'crates') diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index 2a8b40d3..791dbe89 100644 --- a/crates/atuin-client/Cargo.toml +++ b/crates/atuin-client/Cargo.toml @@ -20,7 +20,7 @@ daemon = [] check-update = [] [dependencies] -atuin-common = { path = "../atuin-common", version = "18.14.0" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index 9a810b00..042b8d03 100644 --- a/crates/atuin-daemon/Cargo.toml +++ b/crates/atuin-daemon/Cargo.toml @@ -14,10 +14,10 @@ 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.14.0" } -atuin-common = { path = "../atuin-common", version = "18.14.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.14.0" } -atuin-history = { path = "../atuin-history", version = "18.14.0" } +atuin-client = { path = "../atuin-client", version = "18.14.1" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.14.1" } +atuin-history = { path = "../atuin-history", version = "18.14.1" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index 5b942402..ceae8f78 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.14.0" } -atuin-client = { path = "../atuin-client", version = "18.14.0" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } +atuin-client = { path = "../atuin-client", version = "18.14.1" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index 2aad0dda..faddc8f3 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.14.0" } +atuin-client = { path = "../atuin-client", version = "18.14.1" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml index c4f3a82f..43311192 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.14.0" } -atuin-common = { path = "../atuin-common", version = "18.14.0" } +atuin-client = { path = "../atuin-client", version = "18.14.1" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml index 435ff7de..491b5b07 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.14.0" } -atuin-common = { path = "../atuin-common", version = "18.14.0" } +atuin-client = { path = "../atuin-client", version = "18.14.1" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index dab950a6..b30eb51a 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.14.0" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 3e58ace1..a1b81003 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.14.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.14.0" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.14.1" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml index d4df70bd..10f530cc 100644 --- a/crates/atuin-server-sqlite/Cargo.toml +++ b/crates/atuin-server-sqlite/Cargo.toml @@ -10,8 +10,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.14.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.14.0" } +atuin-common = { path = "../atuin-common", version = "18.14.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.14.1" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index c17859c9..78e285a0 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -43,13 +43,13 @@ clipboard = ["arboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-ai = { path = "../atuin-ai", version = "18.14.0", optional = true, default-features = false } -atuin-client = { path = "../atuin-client", version = "18.14.0", optional = true, default-features = false } +atuin-ai = { path = "../atuin-ai", version = "18.14.1", optional = true, default-features = false } +atuin-client = { path = "../atuin-client", version = "18.14.1", optional = true, default-features = false } atuin-common = { workspace = true } atuin-dotfiles = { workspace = true } atuin-history = { workspace = true } -atuin-daemon = { path = "../atuin-daemon", version = "18.14.0", optional = true, default-features = false } -atuin-hex = { path = "../atuin-hex", version = "18.14.0", optional = true, default-features = false } +atuin-daemon = { path = "../atuin-daemon", version = "18.14.1", optional = true, default-features = false } +atuin-hex = { path = "../atuin-hex", version = "18.14.1", optional = true, default-features = false } atuin-scripts = { workspace = true } atuin-kv = { workspace = true } @@ -109,7 +109,7 @@ daemonize = "0.5.0" # compiles cleanly. tree-sitter 0.26's portable/endian.h fails on illumos, # Windows cross-compiles, and potentially other exotic targets. [target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies] -atuin-ai = { path = "../atuin-ai", version = "18.14.0", optional = true, default-features = false, features = ["tree-sitter"] } +atuin-ai = { path = "../atuin-ai", version = "18.14.1", optional = true, default-features = false, features = ["tree-sitter"] } [target.'cfg(windows)'.dependencies] windows-sys = { version = "0.61.2", features = ["Win32_System_Console"] } -- cgit v1.3.1