summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-02-12 08:38:23 +0000
committerGitHub <noreply@github.com>2024-02-12 08:38:23 +0000
commit1464cb657a47e7b5705194302532f3ecf37c7649 (patch)
treeda00ef92fac7aca1d9971024e220f0c6562ed008
parentf96cb6903db04339bf029e1c1cd2c5b27d210e19 (diff)
chore(release): prepare for release v18.0.1 (#1706)v18.0.1
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml2
-rw-r--r--atuin-client/Cargo.toml2
-rw-r--r--atuin-server-database/Cargo.toml2
-rw-r--r--atuin-server-postgres/Cargo.toml4
-rw-r--r--atuin-server/Cargo.toml4
-rw-r--r--atuin/Cargo.toml8
8 files changed, 24 insertions, 17 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 958004f7..388478df 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
+## [18.0.1] - 2024-02-12
+
+### Bug Fixes
+
+- Reorder the exit of enhanced keyboard mode ([#1694](https://github.com/atuinsh/atuin/issues/1694))
+
## [18.0.0] - 2024-02-09
### Bug Fixes
@@ -51,6 +57,7 @@ All notable changes to this project will be documented in this file.
- Mention environment variables for custom paths ([#1614](https://github.com/atuinsh/atuin/issues/1614))
- Create pull_request_template.md ([#1632](https://github.com/atuinsh/atuin/issues/1632))
- Update CONTRIBUTING.md ([#1633](https://github.com/atuinsh/atuin/issues/1633))
+- Clarify prerequisites for Bash ([#1686](https://github.com/atuinsh/atuin/issues/1686))
### Features
diff --git a/Cargo.lock b/Cargo.lock
index ad9bbeee..280b16b3 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -180,7 +180,7 @@ dependencies = [
[[package]]
name = "atuin"
-version = "18.0.0"
+version = "18.0.1"
dependencies = [
"async-trait",
"atuin-client",
@@ -223,7 +223,7 @@ dependencies = [
[[package]]
name = "atuin-client"
-version = "18.0.0"
+version = "18.0.1"
dependencies = [
"async-trait",
"atuin-common",
@@ -272,7 +272,7 @@ dependencies = [
[[package]]
name = "atuin-common"
-version = "18.0.0"
+version = "18.0.1"
dependencies = [
"eyre",
"lazy_static",
@@ -288,7 +288,7 @@ dependencies = [
[[package]]
name = "atuin-server"
-version = "18.0.0"
+version = "18.0.1"
dependencies = [
"argon2",
"async-trait",
@@ -319,7 +319,7 @@ dependencies = [
[[package]]
name = "atuin-server-database"
-version = "18.0.0"
+version = "18.0.1"
dependencies = [
"async-trait",
"atuin-common",
@@ -332,7 +332,7 @@ dependencies = [
[[package]]
name = "atuin-server-postgres"
-version = "18.0.0"
+version = "18.0.1"
dependencies = [
"async-trait",
"atuin-common",
diff --git a/Cargo.toml b/Cargo.toml
index f12f08d8..e0cd62e8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,7 +11,7 @@ members = [
resolver = "2"
[workspace.package]
-version = "18.0.0"
+version = "18.0.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
rust-version = "1.67"
license = "MIT"
diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml
index 57f146e4..5aab5195 100644
--- a/atuin-client/Cargo.toml
+++ b/atuin-client/Cargo.toml
@@ -18,7 +18,7 @@ sync = ["urlencoding", "reqwest", "sha2", "hex"]
check-update = []
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.0.0" }
+atuin-common = { path = "../atuin-common", version = "18.0.1" }
log = { workspace = true }
base64 = { workspace = true }
diff --git a/atuin-server-database/Cargo.toml b/atuin-server-database/Cargo.toml
index d6418fca..c5293993 100644
--- a/atuin-server-database/Cargo.toml
+++ b/atuin-server-database/Cargo.toml
@@ -10,7 +10,7 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.0.0" }
+atuin-common = { path = "../atuin-common", version = "18.0.1" }
tracing = "0.1"
time = { workspace = true }
diff --git a/atuin-server-postgres/Cargo.toml b/atuin-server-postgres/Cargo.toml
index 6094ebc9..8cfb61e9 100644
--- a/atuin-server-postgres/Cargo.toml
+++ b/atuin-server-postgres/Cargo.toml
@@ -10,8 +10,8 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.0.0" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.0.0" }
+atuin-common = { path = "../atuin-common", version = "18.0.1" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.0.1" }
tracing = "0.1"
time = { workspace = true }
diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml
index 5f3b1ac5..987ba9e3 100644
--- a/atuin-server/Cargo.toml
+++ b/atuin-server/Cargo.toml
@@ -11,8 +11,8 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
-atuin-common = { path = "../atuin-common", version = "18.0.0" }
-atuin-server-database = { path = "../atuin-server-database", version = "18.0.0" }
+atuin-common = { path = "../atuin-common", version = "18.0.1" }
+atuin-server-database = { path = "../atuin-server-database", version = "18.0.1" }
tracing = "0.1"
time = { workspace = true }
diff --git a/atuin/Cargo.toml b/atuin/Cargo.toml
index 79d50703..4941026e 100644
--- a/atuin/Cargo.toml
+++ b/atuin/Cargo.toml
@@ -41,10 +41,10 @@ clipboard = ["cli-clipboard"]
check-update = ["atuin-client/check-update"]
[dependencies]
-atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.0.0", optional = true }
-atuin-server = { path = "../atuin-server", version = "18.0.0", optional = true }
-atuin-client = { path = "../atuin-client", version = "18.0.0", optional = true, default-features = false }
-atuin-common = { path = "../atuin-common", version = "18.0.0" }
+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" }
log = { workspace = true }
env_logger = "0.10.0"