Release v14.0.1 (#883)
This commit is contained in:
parent
d18e1b59ef
commit
7c079070c5
6 changed files with 15 additions and 25 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -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",
|
||||
|
|
20
Cargo.toml
20
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 <ellie@elliehuxtable.com>"]
|
||||
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"]
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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 }
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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).
|
||||
|
|
Loading…
Reference in a new issue