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]]
|
[[package]]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "14.0.0"
|
version = "14.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-client",
|
"atuin-client",
|
||||||
|
@ -110,7 +110,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-client"
|
name = "atuin-client"
|
||||||
version = "14.0.0"
|
version = "14.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
@ -149,7 +149,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-common"
|
name = "atuin-common"
|
||||||
version = "14.0.0"
|
version = "14.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"rand",
|
"rand",
|
||||||
|
@ -159,7 +159,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-server"
|
name = "atuin-server"
|
||||||
version = "14.0.0"
|
version = "14.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
|
20
Cargo.toml
20
Cargo.toml
|
@ -1,13 +1,8 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = ["atuin", "atuin-client", "atuin-server", "atuin-common"]
|
||||||
"atuin",
|
|
||||||
"atuin-client",
|
|
||||||
"atuin-server",
|
|
||||||
"atuin-common",
|
|
||||||
]
|
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "14.0.0"
|
version = "14.0.1"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
rust-version = "1.59"
|
rust-version = "1.59"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -38,16 +33,9 @@ whoami = "1.1.2"
|
||||||
|
|
||||||
[workspace.dependencies.reqwest]
|
[workspace.dependencies.reqwest]
|
||||||
version = "0.11"
|
version = "0.11"
|
||||||
features = [
|
features = ["json", "rustls-tls-native-roots"]
|
||||||
"json",
|
|
||||||
"rustls-tls-native-roots",
|
|
||||||
]
|
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
[workspace.dependencies.sqlx]
|
[workspace.dependencies.sqlx]
|
||||||
version = "0.6"
|
version = "0.6"
|
||||||
features = [
|
features = ["runtime-tokio-rustls", "chrono", "postgres"]
|
||||||
"runtime-tokio-rustls",
|
|
||||||
"chrono",
|
|
||||||
"postgres",
|
|
||||||
]
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ sync = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "14.0.0" }
|
atuin-common = { path = "../atuin-common", version = "14.0.1" }
|
||||||
|
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
chrono = { workspace = true }
|
chrono = { workspace = true }
|
||||||
|
|
|
@ -10,7 +10,7 @@ homepage = { workspace = true }
|
||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "14.0.0" }
|
atuin-common = { path = "../atuin-common", version = "14.0.1" }
|
||||||
|
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
chrono = { workspace = true }
|
chrono = { workspace = true }
|
||||||
|
|
|
@ -42,9 +42,9 @@ sync = ["atuin-client/sync"]
|
||||||
server = ["atuin-server", "tracing-subscriber"]
|
server = ["atuin-server", "tracing-subscriber"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-server = { path = "../atuin-server", version = "14.0.0", optional = true }
|
atuin-server = { path = "../atuin-server", version = "14.0.1", optional = true }
|
||||||
atuin-client = { path = "../atuin-client", version = "14.0.0", optional = true, default-features = false }
|
atuin-client = { path = "../atuin-client", version = "14.0.1", optional = true, default-features = false }
|
||||||
atuin-common = { path = "../atuin-common", version = "14.0.0" }
|
atuin-common = { path = "../atuin-common", version = "14.0.1" }
|
||||||
|
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
|
|
|
@ -6,6 +6,8 @@ authors: [ellie]
|
||||||
tags: [release]
|
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/)
|
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).
|
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