Skip to content

Commit

Permalink
chore(release): prepare for release v18.0.2
Browse files Browse the repository at this point in the history
Backporting a fix for bash
  • Loading branch information
ellie committed Feb 26, 2024
1 parent 386771d commit a78aaa7
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 17 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

### Bug Fixes
Expand Down
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 @@ -11,7 +11,7 @@ members = [
resolver = "2"

[workspace.package]
version = "18.0.1"
version = "18.0.2"
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 @@ -18,7 +18,7 @@ sync = ["urlencoding", "reqwest", "sha2", "hex"]
check-update = []

[dependencies]
atuin-common = { path = "../atuin-common", version = "18.0.1" }
atuin-common = { path = "../atuin-common", version = "18.0.2" }

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 = "18.0.1" }
atuin-common = { path = "../atuin-common", version = "18.0.2" }

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 = "18.0.1" }
atuin-server-database = { path = "../atuin-server-database", version = "18.0.1" }
atuin-common = { path = "../atuin-common", version = "18.0.2" }
atuin-server-database = { path = "../atuin-server-database", version = "18.0.2" }

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 = "18.0.1" }
atuin-server-database = { path = "../atuin-server-database", version = "18.0.1" }
atuin-common = { path = "../atuin-common", version = "18.0.2" }
atuin-server-database = { path = "../atuin-server-database", version = "18.0.2" }

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 @@ -41,10 +41,10 @@ clipboard = ["cli-clipboard"]
check-update = ["atuin-client/check-update"]

[dependencies]
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.0.1", optional = true }
atuin-server = { path = "../atuin-server", version = "18.0.1", optional = true }
atuin-client = { path = "../atuin-client", version = "18.0.1", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.0.1" }
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.0.2", optional = true }
atuin-server = { path = "../atuin-server", version = "18.0.2", optional = true }
atuin-client = { path = "../atuin-client", version = "18.0.2", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.0.2" }

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

0 comments on commit a78aaa7

Please sign in to comment.