Skip to content

Commit

Permalink
chore(release): prepare for release v17.1.0 (atuinsh#1432)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellie authored Dec 10, 2023
1 parent 3db71f2 commit da2e58f
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 18 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

## [unreleased]
## [17.1.0] - 2023-12-10

### Bug Fixes

Expand Down Expand Up @@ -40,6 +40,7 @@ All notable changes to this project will be documented in this file.
- Run dependabot weekly, not daily ([#1423](https://github.com/atuinsh/atuin/issues/1423))
- Don't group deps ([#1424](https://github.com/atuinsh/atuin/issues/1424))
- Add contributor image to README ([#1430](https://github.com/atuinsh/atuin/issues/1430))
- Setup git cliff ([#1431](https://github.com/atuinsh/atuin/issues/1431))

## [17.0.1] - 2023-10-28

Expand Down
5 changes: 5 additions & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ CosmicHorror <[email protected]>
cyqsimon <[email protected]>
Daniel <[email protected]>
Daniel Carosone <[email protected]>
Dennis Trautwein <[email protected]>
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Dieter Eickstaedt <[email protected]>
Dom Rodriguez <[email protected]>
DS/Charlie <[email protected]>
Ed Ive <[email protected]>
Edward Loveall <[email protected]>
Expand All @@ -33,6 +35,7 @@ Erwin Kroon <[email protected]>
Ethan Brierley <[email protected]>
Evan McBeth <[email protected]>
Evan Purkhiser <[email protected]>
Felix Yan <[email protected]>
Frank Hamand <[email protected]>
frukto <[email protected]>
Gokul <[email protected]>
Expand Down Expand Up @@ -84,6 +87,7 @@ mb6ockatf <[email protected]>
mentalisttraceur <[email protected]>
Michael Bianco <[email protected]>
Michael Mior <[email protected]>
Michael Vincent <[email protected]>
mmx <[email protected]>
morguldir <[email protected]>
mundry <[email protected]>
Expand Down Expand Up @@ -140,3 +144,4 @@ YummyOreo <[email protected]>
Yuvi Panda <[email protected]>
ZhiHong Li <[email protected]>
éclairevoyant <[email protected]>
镜面王子 <[email protected]>
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ members = [

[workspace.package]
name = "atuin"
version = "17.0.1"
version = "17.1.0"
authors = ["Ellie Huxtable <[email protected]>"]
rust-version = "1.67"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion atuin-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ default = ["sync"]
sync = ["urlencoding", "reqwest", "sha2", "hex"]

[dependencies]
atuin-common = { path = "../atuin-common", version = "17.0.1" }
atuin-common = { path = "../atuin-common", version = "17.1.0" }

log = { workspace = true }
base64 = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion atuin-server-database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
atuin-common = { path = "../atuin-common", version = "17.0.1" }
atuin-common = { path = "../atuin-common", version = "17.1.0" }

tracing = "0.1"
time = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions atuin-server-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
atuin-common = { path = "../atuin-common", version = "17.0.1" }
atuin-server-database = { path = "../atuin-server-database", version = "17.0.1" }
atuin-common = { path = "../atuin-common", version = "17.1.0" }
atuin-server-database = { path = "../atuin-server-database", version = "17.1.0" }

tracing = "0.1"
time = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions atuin-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
atuin-common = { path = "../atuin-common", version = "17.0.1" }
atuin-server-database = { path = "../atuin-server-database", version = "17.0.1" }
atuin-common = { path = "../atuin-common", version = "17.1.0" }
atuin-server-database = { path = "../atuin-server-database", version = "17.1.0" }

tracing = "0.1"
time = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions atuin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.1", optional = true }
atuin-server = { path = "../atuin-server", version = "17.0.1", optional = true }
atuin-client = { path = "../atuin-client", version = "17.0.1", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "17.0.1" }
atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.1.0", optional = true }
atuin-server = { path = "../atuin-server", version = "17.1.0", optional = true }
atuin-client = { path = "../atuin-client", version = "17.1.0", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "17.1.0" }

log = { workspace = true }
env_logger = "0.10.0"
Expand Down

0 comments on commit da2e58f

Please sign in to comment.