From 04a5f5fdb67d90e8221accb1c9abace9a1efbb16 Mon Sep 17 00:00:00 2001 From: Michelle Tilley Date: Tue, 28 Apr 2026 14:58:32 -0700 Subject: chore(release): prepare for release 18.16.0 (#3457) --- CHANGELOG.md | 4 +++- Cargo.lock | 28 ++++++++++++++-------------- Cargo.toml | 24 ++++++++++++------------ 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 +++++----- 13 files changed, 51 insertions(+), 49 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a49ed9d5..524b616b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,12 @@ All notable changes to this project will be documented in this file. -## [unreleased] +## 18.16.0 ### Features +This release brings full agentic workflows to Atuin AI with file read+write tools, shell command execution, skills, and more. Check out [the docs for Atuin AI](https://docs.atuin.sh/cli/ai/introduction/) for more information. + - AI tool rendering overhaul + edit_file tool ([#3423](https://github.com/atuinsh/atuin/issues/3423)) - Implement write_file tool with overwrite safety ([#3432](https://github.com/atuinsh/atuin/issues/3432)) - Shell tool execution timeouts ([#3437](https://github.com/atuinsh/atuin/issues/3437)) diff --git a/Cargo.lock b/Cargo.lock index 19d83df3..cc1444b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -214,7 +214,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atuin" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "arboard", "async-trait", @@ -274,7 +274,7 @@ dependencies = [ [[package]] name = "atuin-ai" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "async-stream", "async-trait", @@ -326,7 +326,7 @@ dependencies = [ [[package]] name = "atuin-client" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "async-trait", "atuin-common", @@ -381,7 +381,7 @@ dependencies = [ [[package]] name = "atuin-common" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "base64", "directories", @@ -401,7 +401,7 @@ dependencies = [ [[package]] name = "atuin-daemon" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "atuin-client", "atuin-common", @@ -434,7 +434,7 @@ dependencies = [ [[package]] name = "atuin-dotfiles" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "atuin-client", "atuin-common", @@ -448,7 +448,7 @@ dependencies = [ [[package]] name = "atuin-hex" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "clap", "crossterm", @@ -460,7 +460,7 @@ dependencies = [ [[package]] name = "atuin-history" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "atuin-client", "crossterm", @@ -473,7 +473,7 @@ dependencies = [ [[package]] name = "atuin-kv" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "atuin-client", "atuin-common", @@ -516,7 +516,7 @@ dependencies = [ [[package]] name = "atuin-scripts" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "atuin-client", "atuin-common", @@ -538,7 +538,7 @@ dependencies = [ [[package]] name = "atuin-server" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "argon2", "atuin-common", @@ -567,7 +567,7 @@ dependencies = [ [[package]] name = "atuin-server-database" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "async-trait", "atuin-common", @@ -580,7 +580,7 @@ dependencies = [ [[package]] name = "atuin-server-postgres" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "async-trait", "atuin-common", @@ -598,7 +598,7 @@ dependencies = [ [[package]] name = "atuin-server-sqlite" -version = "18.16.0-beta.1" +version = "18.16.0" dependencies = [ "async-trait", "atuin-common", diff --git a/Cargo.toml b/Cargo.toml index 0e43d931..6f561f51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ resolver = "2" exclude = ["ui/backend", "crates/atuin-nucleo/matcher/fuzz"] [workspace.package] -version = "18.16.0-beta.1" +version = "18.16.0" authors = ["Ellie Huxtable "] rust-version = "1.95.0" license = "MIT" @@ -19,17 +19,17 @@ readme = "README.md" [workspace.dependencies] async-trait = "0.1.58" -atuin-client = { path = "crates/atuin-client", version = "18.16.0-beta.1" } -atuin-common = { path = "crates/atuin-common", version = "18.16.0-beta.1" } -atuin-daemon = { path = "crates/atuin-daemon", version = "18.16.0-beta.1" } -atuin-dotfiles = { path = "crates/atuin-dotfiles", version = "18.16.0-beta.1" } -atuin-history = { path = "crates/atuin-history", version = "18.16.0-beta.1" } -atuin-kv = { path = "crates/atuin-kv", version = "18.16.0-beta.1" } -atuin-scripts = { path = "crates/atuin-scripts", version = "18.16.0-beta.1" } -atuin-server = { path = "crates/atuin-server", version = "18.16.0-beta.1" } -atuin-server-database = { path = "crates/atuin-server-database", version = "18.16.0-beta.1" } -atuin-server-postgres = { path = "crates/atuin-server-postgres", version = "18.16.0-beta.1" } -atuin-server-sqlite = { path = "crates/atuin-server-sqlite", version = "18.16.0-beta.1" } +atuin-client = { path = "crates/atuin-client", version = "18.16.0" } +atuin-common = { path = "crates/atuin-common", version = "18.16.0" } +atuin-daemon = { path = "crates/atuin-daemon", version = "18.16.0" } +atuin-dotfiles = { path = "crates/atuin-dotfiles", version = "18.16.0" } +atuin-history = { path = "crates/atuin-history", version = "18.16.0" } +atuin-kv = { path = "crates/atuin-kv", version = "18.16.0" } +atuin-scripts = { path = "crates/atuin-scripts", version = "18.16.0" } +atuin-server = { path = "crates/atuin-server", version = "18.16.0" } +atuin-server-database = { path = "crates/atuin-server-database", version = "18.16.0" } +atuin-server-postgres = { path = "crates/atuin-server-postgres", version = "18.16.0" } +atuin-server-sqlite = { path = "crates/atuin-server-sqlite", version = "18.16.0" } atuin-nucleo = { path = "crates/atuin-nucleo", version = "0.6.0" } atuin-nucleo-matcher = { path = "crates/atuin-nucleo/matcher", version = "0.3.1" } base64 = "0.22" diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index 9e843e6a..098ecf05 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.16.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index 3c59b2e4..15a99849 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.16.0-beta.1" } -atuin-common = { path = "../atuin-common", version = "18.16.0-beta.1" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.16.0-beta.1" } -atuin-history = { path = "../atuin-history", version = "18.16.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.16.0" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.16.0" } +atuin-history = { path = "../atuin-history", version = "18.16.0" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index a8b18bcf..02a60869 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.16.0-beta.1" } -atuin-client = { path = "../atuin-client", version = "18.16.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } +atuin-client = { path = "../atuin-client", version = "18.16.0" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index b7b3f912..96c9b150 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.16.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.16.0" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml index 6db240fa..37679f85 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.16.0-beta.1" } -atuin-common = { path = "../atuin-common", version = "18.16.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.16.0" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml index d848fd65..6bf514d8 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.16.0-beta.1" } -atuin-common = { path = "../atuin-common", version = "18.16.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.16.0" } +atuin-common = { path = "../atuin-common", version = "18.16.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 34cf6d01..d4c2bbbd 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.16.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 908d5d81..1965b414 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.16.0-beta.1" } -atuin-server-database = { path = "../atuin-server-database", version = "18.16.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.16.0" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml index dbabd32c..a1b1c9d1 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.16.0-beta.1" } -atuin-server-database = { path = "../atuin-server-database", version = "18.16.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.16.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.16.0" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index 63afdf61..768827c2 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.16.0-beta.1", optional = true, default-features = false } -atuin-client = { path = "../atuin-client", version = "18.16.0-beta.1", optional = true, default-features = false } +atuin-ai = { path = "../atuin-ai", version = "18.16.0", optional = true, default-features = false } +atuin-client = { path = "../atuin-client", version = "18.16.0", optional = true, default-features = false } atuin-common = { workspace = true } atuin-dotfiles = { workspace = true } atuin-history = { workspace = true } -atuin-daemon = { path = "../atuin-daemon", version = "18.16.0-beta.1", optional = true, default-features = false } -atuin-hex = { path = "../atuin-hex", version = "18.16.0-beta.1", optional = true, default-features = false } +atuin-daemon = { path = "../atuin-daemon", version = "18.16.0", optional = true, default-features = false } +atuin-hex = { path = "../atuin-hex", version = "18.16.0", 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.16.0-beta.1", optional = true, default-features = false, features = ["tree-sitter"] } +atuin-ai = { path = "../atuin-ai", version = "18.16.0", 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