mirror of
https://github.com/atuinsh/atuin.git
synced 2025-06-20 09:58:00 +02:00
chore(release): prepare for release v18.0.2 (#1775)
This commit is contained in:
parent
248213bf3e
commit
cf09464d4d
@ -2,6 +2,12 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [18.0.2] - 2024-02-26
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- Rework #1509 to recover from the preexec failure ([#1729](https://github.com/atuinsh/atuin/issues/1729))
|
||||||
|
|
||||||
## [18.0.1] - 2024-02-12
|
## [18.0.1] - 2024-02-12
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -180,7 +180,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-client",
|
"atuin-client",
|
||||||
@ -224,7 +224,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-client"
|
name = "atuin-client"
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
@ -273,7 +273,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-common"
|
name = "atuin-common"
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"eyre",
|
"eyre",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
@ -302,7 +302,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-server"
|
name = "atuin-server"
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"argon2",
|
"argon2",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@ -333,7 +333,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-server-database"
|
name = "atuin-server-database"
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
@ -346,7 +346,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin-server-postgres"
|
name = "atuin-server-postgres"
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-common",
|
"atuin-common",
|
||||||
|
@ -12,7 +12,7 @@ members = [
|
|||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "18.0.1"
|
version = "18.0.2"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
rust-version = "1.67"
|
rust-version = "1.67"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -18,7 +18,7 @@ sync = ["urlencoding", "reqwest", "sha2", "hex"]
|
|||||||
check-update = []
|
check-update = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "18.0.1" }
|
atuin-common = { path = "../atuin-common", version = "18.0.2" }
|
||||||
|
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
base64 = { workspace = true }
|
base64 = { workspace = true }
|
||||||
|
@ -10,7 +10,7 @@ homepage = { workspace = true }
|
|||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "18.0.1" }
|
atuin-common = { path = "../atuin-common", version = "18.0.2" }
|
||||||
|
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
time = { workspace = true }
|
time = { workspace = true }
|
||||||
|
@ -10,8 +10,8 @@ homepage = { workspace = true }
|
|||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "18.0.1" }
|
atuin-common = { path = "../atuin-common", version = "18.0.2" }
|
||||||
atuin-server-database = { path = "../atuin-server-database", version = "18.0.1" }
|
atuin-server-database = { path = "../atuin-server-database", version = "18.0.2" }
|
||||||
|
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
time = { workspace = true }
|
time = { workspace = true }
|
||||||
|
@ -11,8 +11,8 @@ homepage = { workspace = true }
|
|||||||
repository = { workspace = true }
|
repository = { workspace = true }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-common = { path = "../atuin-common", version = "18.0.1" }
|
atuin-common = { path = "../atuin-common", version = "18.0.2" }
|
||||||
atuin-server-database = { path = "../atuin-server-database", version = "18.0.1" }
|
atuin-server-database = { path = "../atuin-server-database", version = "18.0.2" }
|
||||||
|
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
time = { workspace = true }
|
time = { workspace = true }
|
||||||
|
@ -41,10 +41,10 @@ clipboard = ["cli-clipboard"]
|
|||||||
check-update = ["atuin-client/check-update"]
|
check-update = ["atuin-client/check-update"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.0.1", optional = true }
|
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.0.2", optional = true }
|
||||||
atuin-server = { path = "../atuin-server", version = "18.0.1", optional = true }
|
atuin-server = { path = "../atuin-server", version = "18.0.2", optional = true }
|
||||||
atuin-client = { path = "../atuin-client", version = "18.0.1", optional = true, default-features = false }
|
atuin-client = { path = "../atuin-client", version = "18.0.2", optional = true, default-features = false }
|
||||||
atuin-common = { path = "../atuin-common", version = "18.0.1" }
|
atuin-common = { path = "../atuin-common", version = "18.0.2" }
|
||||||
atuin-config = { path = "../atuin-config", version = "0.1.0" }
|
atuin-config = { path = "../atuin-config", version = "0.1.0" }
|
||||||
|
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user