mirror of
https://github.com/atuinsh/atuin.git
synced 2024-11-25 01:34:13 +01:00
chore(release): prepare for release v17.2.1 (#1495)
This commit is contained in:
parent
198b4e2ceb
commit
9f79a34a9d
@ -2,6 +2,12 @@
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## [17.2.1] - 2024-01-03
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Typo with default config ([#1493](https://github.com/atuinsh/atuin/issues/1493))
|
||||
|
||||
## [17.2.0] - 2024-01-03
|
||||
|
||||
### Bug Fixes
|
||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -165,7 +165,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "atuin"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-client",
|
||||
@ -206,7 +206,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "atuin-client"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-common",
|
||||
@ -252,7 +252,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "atuin-common"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
dependencies = [
|
||||
"eyre",
|
||||
"lazy_static",
|
||||
@ -268,7 +268,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "atuin-server"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
dependencies = [
|
||||
"argon2",
|
||||
"async-trait",
|
||||
@ -302,7 +302,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "atuin-server-database"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-common",
|
||||
@ -315,7 +315,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "atuin-server-postgres"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-common",
|
||||
|
@ -10,7 +10,7 @@ members = [
|
||||
|
||||
[workspace.package]
|
||||
name = "atuin"
|
||||
version = "17.2.0"
|
||||
version = "17.2.1"
|
||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||
rust-version = "1.67"
|
||||
license = "MIT"
|
||||
|
@ -17,7 +17,7 @@ default = ["sync"]
|
||||
sync = ["urlencoding", "reqwest", "sha2", "hex"]
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.0" }
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.1" }
|
||||
|
||||
log = { workspace = true }
|
||||
base64 = { workspace = true }
|
||||
|
@ -10,7 +10,7 @@ homepage = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.0" }
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.1" }
|
||||
|
||||
tracing = "0.1"
|
||||
time = { workspace = true }
|
||||
|
@ -10,8 +10,8 @@ homepage = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.0" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "17.2.0" }
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.1" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "17.2.1" }
|
||||
|
||||
tracing = "0.1"
|
||||
time = { workspace = true }
|
||||
|
@ -11,8 +11,8 @@ homepage = { workspace = true }
|
||||
repository = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.0" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "17.2.0" }
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.1" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "17.2.1" }
|
||||
|
||||
tracing = "0.1"
|
||||
time = { workspace = true }
|
||||
|
@ -39,10 +39,10 @@ sync = ["atuin-client/sync"]
|
||||
server = ["atuin-server", "atuin-server-postgres", "tracing-subscriber"]
|
||||
|
||||
[dependencies]
|
||||
atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.2.0", optional = true }
|
||||
atuin-server = { path = "../atuin-server", version = "17.2.0", optional = true }
|
||||
atuin-client = { path = "../atuin-client", version = "17.2.0", optional = true, default-features = false }
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.0" }
|
||||
atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.2.1", optional = true }
|
||||
atuin-server = { path = "../atuin-server", version = "17.2.1", optional = true }
|
||||
atuin-client = { path = "../atuin-client", version = "17.2.1", optional = true, default-features = false }
|
||||
atuin-common = { path = "../atuin-common", version = "17.2.1" }
|
||||
|
||||
log = { workspace = true }
|
||||
env_logger = "0.10.0"
|
||||
|
Loading…
Reference in New Issue
Block a user