diff --git a/Cargo.lock b/Cargo.lock index ecdc65c6781..9838dadf9c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "atuin" -version = "14.0.0" +version = "14.0.1" dependencies = [ "async-trait", "atuin-client", @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "atuin-client" -version = "14.0.0" +version = "14.0.1" dependencies = [ "async-trait", "atuin-common", @@ -149,7 +149,7 @@ dependencies = [ [[package]] name = "atuin-common" -version = "14.0.0" +version = "14.0.1" dependencies = [ "chrono", "rand", @@ -159,7 +159,7 @@ dependencies = [ [[package]] name = "atuin-server" -version = "14.0.0" +version = "14.0.1" dependencies = [ "async-trait", "atuin-common", diff --git a/Cargo.toml b/Cargo.toml index cb86975fdf2..82965372bb0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,8 @@ [workspace] -members = [ - "atuin", - "atuin-client", - "atuin-server", - "atuin-common", -] +members = ["atuin", "atuin-client", "atuin-server", "atuin-common"] [workspace.package] -version = "14.0.0" +version = "14.0.1" authors = ["Ellie Huxtable "] rust-version = "1.59" license = "MIT" @@ -38,16 +33,9 @@ whoami = "1.1.2" [workspace.dependencies.reqwest] version = "0.11" -features = [ - "json", - "rustls-tls-native-roots", -] +features = ["json", "rustls-tls-native-roots"] default-features = false [workspace.dependencies.sqlx] version = "0.6" -features = [ - "runtime-tokio-rustls", - "chrono", - "postgres", -] +features = ["runtime-tokio-rustls", "chrono", "postgres"] diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml index 0f498d3c99a..6c5d04b9c95 100644 --- a/atuin-client/Cargo.toml +++ b/atuin-client/Cargo.toml @@ -24,7 +24,7 @@ sync = [ ] [dependencies] -atuin-common = { path = "../atuin-common", version = "14.0.0" } +atuin-common = { path = "../atuin-common", version = "14.0.1" } log = { workspace = true } chrono = { workspace = true } diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml index 9a32f0d2f5f..a60bc253e73 100644 --- a/atuin-server/Cargo.toml +++ b/atuin-server/Cargo.toml @@ -10,7 +10,7 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "14.0.0" } +atuin-common = { path = "../atuin-common", version = "14.0.1" } tracing = "0.1" chrono = { workspace = true } diff --git a/atuin/Cargo.toml b/atuin/Cargo.toml index d9cbfe673ee..e5a49afe7f5 100644 --- a/atuin/Cargo.toml +++ b/atuin/Cargo.toml @@ -42,9 +42,9 @@ sync = ["atuin-client/sync"] server = ["atuin-server", "tracing-subscriber"] [dependencies] -atuin-server = { path = "../atuin-server", version = "14.0.0", optional = true } -atuin-client = { path = "../atuin-client", version = "14.0.0", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "14.0.0" } +atuin-server = { path = "../atuin-server", version = "14.0.1", optional = true } +atuin-client = { path = "../atuin-client", version = "14.0.1", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "14.0.1" } log = { workspace = true } env_logger = "0.10.0" diff --git a/docs/blog/2023/04-01-release-v14/index.md b/docs/blog/2023/04-01-release-v14/index.md index bde0c513629..2a2c42a8f70 100644 --- a/docs/blog/2023/04-01-release-v14/index.md +++ b/docs/blog/2023/04-01-release-v14/index.md @@ -6,6 +6,8 @@ authors: [ellie] tags: [release] --- +> We have since released v14.0.1 with some fixes, following a NuShell breaking change. A writeup of other included changes will be included in the next release notes! + Announcing a new release of Atuin! v14 is out now. Atuin allows you to easily search and sync your shell history across many machines. Get started [here](https://atuin.sh/docs/) You can update your installation via your system package manager, or by downloading the latest release from the [release page](https://github.com/ellie/atuin/releases).