aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2025-08-04 12:33:08 +0200
committerGitHub <noreply@github.com>2025-08-04 12:33:08 +0200
commit5614596c8165e6f5e22b5524c7bb127bf55bc48a (patch)
tree4cd042d3075e09e6928d61914dd41c215cf4697e
parentfeat: add IDX_CACHE_ROLLOUT (#2850) (diff)
downloadatuin-5614596c8165e6f5e22b5524c7bb127bf55bc48a.zip
chore(release): prepare for release 18.8.0 (#2858)
-rw-r--r--Cargo.lock24
-rw-r--r--Cargo.toml2
-rw-r--r--crates/atuin-client/Cargo.toml2
-rw-r--r--crates/atuin-daemon/Cargo.toml6
-rw-r--r--crates/atuin-dotfiles/Cargo.toml4
-rw-r--r--crates/atuin-history/Cargo.toml2
-rw-r--r--crates/atuin-kv/Cargo.toml4
-rw-r--r--crates/atuin-scripts/Cargo.toml4
-rw-r--r--crates/atuin-server-database/Cargo.toml2
-rw-r--r--crates/atuin-server-postgres/Cargo.toml4
-rw-r--r--crates/atuin-server-sqlite/Cargo.toml4
-rw-r--r--crates/atuin-server/Cargo.toml4
-rw-r--r--crates/atuin/Cargo.toml22
13 files changed, 42 insertions, 42 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7b506e76..414f1f1a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -221,7 +221,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "atuin"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"arboard",
"async-trait",
@@ -272,7 +272,7 @@ dependencies = [
[[package]]
name = "atuin-client"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"async-trait",
"atuin-common",
@@ -327,7 +327,7 @@ dependencies = [
[[package]]
name = "atuin-common"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"base64 0.22.1",
"directories",
@@ -347,7 +347,7 @@ dependencies = [
[[package]]
name = "atuin-daemon"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"atuin-client",
"atuin-dotfiles",
@@ -374,7 +374,7 @@ dependencies = [
[[package]]
name = "atuin-dotfiles"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"atuin-client",
"atuin-common",
@@ -388,7 +388,7 @@ dependencies = [
[[package]]
name = "atuin-history"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"atuin-client",
"crossterm",
@@ -401,7 +401,7 @@ dependencies = [
[[package]]
name = "atuin-kv"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"atuin-client",
"atuin-common",
@@ -417,7 +417,7 @@ dependencies = [
[[package]]
name = "atuin-scripts"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"atuin-client",
"atuin-common",
@@ -439,7 +439,7 @@ dependencies = [
[[package]]
name = "atuin-server"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"argon2",
"async-trait",
@@ -468,7 +468,7 @@ dependencies = [
[[package]]
name = "atuin-server-database"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"async-trait",
"atuin-common",
@@ -481,7 +481,7 @@ dependencies = [
[[package]]
name = "atuin-server-postgres"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"async-trait",
"atuin-common",
@@ -499,7 +499,7 @@ dependencies = [
[[package]]
name = "atuin-server-sqlite"
-version = "18.7.1"
+version = "18.8.0"
dependencies = [
"async-trait",
"atuin-common",
diff --git a/Cargo.toml b/Cargo.toml
index 5ada8f44..d6b4a1bd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ resolver = "2"
exclude = ["ui/backend"]
[workspace.package]
-version = "18.7.1"
+version = "18.8.0"
authors = ["Ellie Huxtable <ellie@atuin.sh>"]
rust-version = "1.88"
license = "MIT"
diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml
index 0cd766d7..8db13df5 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.7.1" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
log = { workspace = true }
base64 = { workspace = true }
diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml
index 5598b3e5..de47be9b 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.7.1" }
-atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.7.1" }
-atuin-history = { path = "../atuin-history", version = "18.7.1" }
+atuin-client = { path = "../atuin-client", version = "18.8.0" }
+atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.8.0" }
+atuin-history = { path = "../atuin-history", version = "18.8.0" }
time = { workspace = true }
uuid = { workspace = true }
diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml
index 3def9ad8..39dd3b2e 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.7.1" }
-atuin-client = { path = "../atuin-client", version = "18.7.1" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
+atuin-client = { path = "../atuin-client", version = "18.8.0" }
eyre = { workspace = true }
tokio = { workspace = true }
diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml
index f4a55dbc..86aef8bb 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.7.1" }
+atuin-client = { path = "../atuin-client", version = "18.8.0" }
time = { workspace = true }
serde = { workspace = true }
diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml
index c52c5461..891d1beb 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.7.1" }
-atuin-common = { path = "../atuin-common", version = "18.7.1" }
+atuin-client = { path = "../atuin-client", version = "18.8.0" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml
index bc66bdd3..3e92277f 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.7.1" }
-atuin-common = { path = "../atuin-common", version = "18.7.1" }
+atuin-client = { path = "../atuin-client", version = "18.8.0" }
+atuin-common = { path = "../atuin-common", version = "18.8.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 34a04655..582cb948 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.7.1" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
tracing = { workspace = true }
time = { workspace = true }
diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml
index b75ec224..55e1c6ae 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.7.1" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.7.1" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.8.0" }
eyre = { workspace = true }
tracing = { workspace = true }
diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml
index 0d588a20..f2bda806 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.7.1" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.7.1" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.8.0" }
eyre = { workspace = true }
tracing = { workspace = true }
diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml
index e12e117e..ea1bc23b 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.7.1" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.7.1" }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.8.0" }
tracing = { workspace = true }
time = { workspace = true }
diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml
index 42c8a7c8..4ad6e058 100644
--- a/crates/atuin/Cargo.toml
+++ b/crates/atuin/Cargo.toml
@@ -47,17 +47,17 @@ clipboard = ["arboard"]
check-update = ["atuin-client/check-update"]
[dependencies]
-atuin-server-database = { path = "../atuin-server-database", version = "18.7.1", optional = true }
-atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.7.1", optional = true }
-atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.7.1", optional = true }
-atuin-server = { path = "../atuin-server", version = "18.7.1", optional = true }
-atuin-client = { path = "../atuin-client", version = "18.7.1", optional = true, default-features = false }
-atuin-common = { path = "../atuin-common", version = "18.7.1" }
-atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.7.1" }
-atuin-history = { path = "../atuin-history", version = "18.7.1" }
-atuin-daemon = { path = "../atuin-daemon", version = "18.7.1", optional = true, default-features = false }
-atuin-scripts = { path = "../atuin-scripts", version = "18.7.1" }
-atuin-kv = { path = "../atuin-kv", version = "18.7.1" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.8.0", optional = true }
+atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.8.0", optional = true }
+atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.8.0", optional = true }
+atuin-server = { path = "../atuin-server", version = "18.8.0", optional = true }
+atuin-client = { path = "../atuin-client", version = "18.8.0", optional = true, default-features = false }
+atuin-common = { path = "../atuin-common", version = "18.8.0" }
+atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.8.0" }
+atuin-history = { path = "../atuin-history", version = "18.8.0" }
+atuin-daemon = { path = "../atuin-daemon", version = "18.8.0", optional = true, default-features = false }
+atuin-scripts = { path = "../atuin-scripts", version = "18.8.0" }
+atuin-kv = { path = "../atuin-kv", version = "18.8.0" }
log = { workspace = true }
time = { workspace = true }