diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-04-07 14:33:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-07 14:33:24 +0100 |
| commit | 1f6031d84acefd68b2dcc9d3a11eb6203745303f (patch) | |
| tree | 90eca72cc25f7cffd0144bcef112b4341199f7e8 /crates | |
| parent | feat: support storing, syncing and executing scripts (#2644) (diff) | |
| download | atuin-1f6031d84acefd68b2dcc9d3a11eb6203745303f.zip | |
chore(release): prepare for release 18.5.0-beta.3 (#2678)
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-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 | 16 |
8 files changed, 20 insertions, 20 deletions
diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index a4f2fb24..37b7d200 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.5.0-beta.2" } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index b8037145..6739550d 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.5.0-beta.2" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.2" } -atuin-history = { path = "../atuin-history", version = "18.5.0-beta.2" } +atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" } +atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index 19aa790b..d86b4b64 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.5.0-beta.2" } -atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" } +atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index faebb842..216e243e 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.5.0-beta.2" } +atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index 20265f18..917b0f5d 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.5.0-beta.2" } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index c4345153..0f667c8e 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.5.0-beta.2" } -atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.2" } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" } +atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index fe141cd2..085b96de 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.5.0-beta.2" } -atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.2" } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" } +atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index 881dc659..e653ecfa 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -42,14 +42,14 @@ clipboard = ["arboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0-beta.2", optional = true } -atuin-server = { path = "../atuin-server", version = "18.5.0-beta.2", optional = true } -atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.2" } -atuin-history = { path = "../atuin-history", version = "18.5.0-beta.2" } -atuin-daemon = { path = "../atuin-daemon", version = "18.5.0-beta.2", optional = true, default-features = false } -atuin-scripts = { path = "../atuin-scripts", version = "18.5.0-beta.2" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0-beta.3", optional = true } +atuin-server = { path = "../atuin-server", version = "18.5.0-beta.3", optional = true } +atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" } +atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" } +atuin-daemon = { path = "../atuin-daemon", version = "18.5.0-beta.3", optional = true, default-features = false } +atuin-scripts = { path = "../atuin-scripts", version = "18.5.0-beta.3" } log = { workspace = true } time = { workspace = true } |
