Skip to content

Commit 9f79a34

Browse files
authored
chore(release): prepare for release v17.2.1 (#1495)
1 parent 198b4e2 commit 9f79a34

File tree

8 files changed

+23
-17
lines changed

8 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [17.2.1] - 2024-01-03
6+
7+
### Bug Fixes
8+
9+
- Typo with default config ([#1493](https://github.com/atuinsh/atuin/issues/1493))
10+
511
## [17.2.0] - 2024-01-03
612

713
### Bug Fixes

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ members = [
1010

1111
[workspace.package]
1212
name = "atuin"
13-
version = "17.2.0"
13+
version = "17.2.1"
1414
authors = ["Ellie Huxtable <[email protected]>"]
1515
rust-version = "1.67"
1616
license = "MIT"

atuin-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ default = ["sync"]
1717
sync = ["urlencoding", "reqwest", "sha2", "hex"]
1818

1919
[dependencies]
20-
atuin-common = { path = "../atuin-common", version = "17.2.0" }
20+
atuin-common = { path = "../atuin-common", version = "17.2.1" }
2121

2222
log = { workspace = true }
2323
base64 = { workspace = true }

atuin-server-database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = { workspace = true }
1010
repository = { workspace = true }
1111

1212
[dependencies]
13-
atuin-common = { path = "../atuin-common", version = "17.2.0" }
13+
atuin-common = { path = "../atuin-common", version = "17.2.1" }
1414

1515
tracing = "0.1"
1616
time = { workspace = true }

atuin-server-postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ homepage = { workspace = true }
1010
repository = { workspace = true }
1111

1212
[dependencies]
13-
atuin-common = { path = "../atuin-common", version = "17.2.0" }
14-
atuin-server-database = { path = "../atuin-server-database", version = "17.2.0" }
13+
atuin-common = { path = "../atuin-common", version = "17.2.1" }
14+
atuin-server-database = { path = "../atuin-server-database", version = "17.2.1" }
1515

1616
tracing = "0.1"
1717
time = { workspace = true }

atuin-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ homepage = { workspace = true }
1111
repository = { workspace = true }
1212

1313
[dependencies]
14-
atuin-common = { path = "../atuin-common", version = "17.2.0" }
15-
atuin-server-database = { path = "../atuin-server-database", version = "17.2.0" }
14+
atuin-common = { path = "../atuin-common", version = "17.2.1" }
15+
atuin-server-database = { path = "../atuin-server-database", version = "17.2.1" }
1616

1717
tracing = "0.1"
1818
time = { workspace = true }

atuin/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ sync = ["atuin-client/sync"]
3939
server = ["atuin-server", "atuin-server-postgres", "tracing-subscriber"]
4040

4141
[dependencies]
42-
atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.2.0", optional = true }
43-
atuin-server = { path = "../atuin-server", version = "17.2.0", optional = true }
44-
atuin-client = { path = "../atuin-client", version = "17.2.0", optional = true, default-features = false }
45-
atuin-common = { path = "../atuin-common", version = "17.2.0" }
42+
atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.2.1", optional = true }
43+
atuin-server = { path = "../atuin-server", version = "17.2.1", optional = true }
44+
atuin-client = { path = "../atuin-client", version = "17.2.1", optional = true, default-features = false }
45+
atuin-common = { path = "../atuin-common", version = "17.2.1" }
4646

4747
log = { workspace = true }
4848
env_logger = "0.10.0"

0 commit comments

Comments
 (0)