From 9be49e434e549d6b13928b530139b66fef6171f1 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 10 Jun 2024 14:42:32 +0100 Subject: chore(release): prepare for release v18.3.0 (#2105) * chore(release): prepare for release v18.3.0 * build full release * Revert "build full release" This reverts commit 65e7718b51927ca6cb03a411cce781b81cb64eaa. --- crates/atuin-client/Cargo.toml | 2 +- crates/atuin-daemon/Cargo.toml | 8 ++++---- crates/atuin-dotfiles/Cargo.toml | 6 +++--- crates/atuin-history/Cargo.toml | 6 +++--- crates/atuin-server-database/Cargo.toml | 2 +- crates/atuin-server-postgres/Cargo.toml | 4 ++-- crates/atuin-server/Cargo.toml | 4 ++-- crates/atuin/Cargo.toml | 14 +++++++------- 8 files changed, 23 insertions(+), 23 deletions(-) (limited to 'crates') diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index 260c04f2..774b27ed 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.3.0-prerelease.1" } +atuin-common = { path = "../atuin-common", version = "18.3.0" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index 48b3a71d..06eb4428 100644 --- a/crates/atuin-daemon/Cargo.toml +++ b/crates/atuin-daemon/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "atuin-daemon" edition = "2021" -version = "0.1.0" +version = "0.2.0" authors.workspace = true rust-version.workspace = true license.workspace = true @@ -12,9 +12,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.3.0-prerelease.1" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.2.0" } -atuin-history = { path = "../atuin-history", version = "0.1.0" } +atuin-client = { path = "../atuin-client", version = "18.3.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.3.0" } +atuin-history = { path = "../atuin-history", version = "0.2.0" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index ac93e9bf..388cb84b 100644 --- a/crates/atuin-dotfiles/Cargo.toml +++ b/crates/atuin-dotfiles/Cargo.toml @@ -2,7 +2,7 @@ name = "atuin-dotfiles" description = "The dotfiles crate for Atuin" edition = "2021" -version = "0.2.0" # intentionally not the same as the rest +version = "0.3.0" # intentionally not the same as the rest authors.workspace = true rust-version.workspace = true @@ -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.3.0-prerelease.1" } -atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1" } +atuin-common = { path = "../atuin-common", version = "18.3.0" } +atuin-client = { path = "../atuin-client", version = "18.3.0" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index 7863b220..4437da94 100644 --- a/crates/atuin-history/Cargo.toml +++ b/crates/atuin-history/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "atuin-history" edition = "2021" -version = "0.1.0" +version = "0.2.0" authors.workspace = true rust-version.workspace = true @@ -13,8 +13,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.3.0-prerelease.1" } -atuin-common = { path = "../atuin-common", version = "18.3.0-prerelease.1" } +atuin-client = { path = "../atuin-client", version = "18.3.0" } +atuin-common = { path = "../atuin-common", version = "18.3.0" } log = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index 1e6ce7bf..62a0b93a 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.3.0-prerelease.1" } +atuin-common = { path = "../atuin-common", version = "18.3.0" } tracing = "0.1" time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 4c9af1ba..961979d3 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.3.0-prerelease.1" } -atuin-server-database = { path = "../atuin-server-database", version = "18.3.0-prerelease.1" } +atuin-common = { path = "../atuin-common", version = "18.3.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.3.0" } eyre = { workspace = true } tracing = "0.1" diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index 1e7388ad..b076a466 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.3.0-prerelease.1" } -atuin-server-database = { path = "../atuin-server-database", version = "18.3.0-prerelease.1" } +atuin-common = { path = "../atuin-common", version = "18.3.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.3.0" } tracing = "0.1" time = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index 1f01a787..2f8bf8f0 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -42,13 +42,13 @@ clipboard = ["cli-clipboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.3.0-prerelease.1", optional = true } -atuin-server = { path = "../atuin-server", version = "18.3.0-prerelease.1", optional = true } -atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "18.3.0-prerelease.1" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.2.0" } -atuin-history = { path = "../atuin-history", version = "0.1.0" } -atuin-daemon = { path = "../atuin-daemon", version = "0.1.0" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.3.0", optional = true } +atuin-server = { path = "../atuin-server", version = "18.3.0", optional = true } +atuin-client = { path = "../atuin-client", version = "18.3.0", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "18.3.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.3.0" } +atuin-history = { path = "../atuin-history", version = "0.2.0" } +atuin-daemon = { path = "../atuin-daemon", version = "0.2.0" } log = { workspace = true } env_logger = "0.11.2" -- cgit v1.3.1