diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-05-06 16:18:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-06 16:18:21 -0700 |
| commit | 45460d4c31c793985970a53f125d1a5da42c8d25 (patch) | |
| tree | 446d80dda27f4999b843a467af607ecfe15934de /crates | |
| parent | feat: Implement KV as a write-through cache (#2732) (diff) | |
| download | atuin-45460d4c31c793985970a53f125d1a5da42c8d25.zip | |
chore(release): prepare for release 18.6.0 (#2740)
Co-authored-by: Ellie Huxtable <ellie@mac.lan>
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/atuin-client/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-daemon/Cargo.toml | 6 | ||||
| -rw-r--r-- | crates/atuin-dotfiles/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-history/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-kv/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-scripts/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server-database/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-server-postgres/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin/Cargo.toml | 18 |
10 files changed, 25 insertions, 25 deletions
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 } |
