summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml8
-rw-r--r--atuin-client/Cargo.toml4
-rw-r--r--atuin-common/Cargo.toml2
-rw-r--r--atuin-server/Cargo.toml4
-rw-r--r--docs/blog/2023/02-26-release-v13/index.md3
6 files changed, 16 insertions, 13 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 41622a346..feb5dc5ca 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -70,7 +70,7 @@ dependencies = [
[[package]]
name = "atuin"
-version = "13.0.0"
+version = "13.0.1"
dependencies = [
"async-trait",
"atuin-client",
@@ -108,7 +108,7 @@ dependencies = [
[[package]]
name = "atuin-client"
-version = "13.0.0"
+version = "13.0.1"
dependencies = [
"async-trait",
"atuin-common",
@@ -147,7 +147,7 @@ dependencies = [
[[package]]
name = "atuin-common"
-version = "13.0.0"
+version = "13.0.1"
dependencies = [
"chrono",
"serde",
@@ -156,7 +156,7 @@ dependencies = [
[[package]]
name = "atuin-server"
-version = "13.0.0"
+version = "13.0.1"
dependencies = [
"async-trait",
"atuin-common",
diff --git a/Cargo.toml b/Cargo.toml
index c44e0b6f8..5b47505e8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin"
-version = "13.0.0"
+version = "13.0.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2021"
rust-version = "1.59"
@@ -44,9 +44,9 @@ sync = ["atuin-client/sync"]
server = ["atuin-server", "tracing-subscriber"]
[dependencies]
-atuin-server = { path = "atuin-server", version = "13.0.0", optional = true }
-atuin-client = { path = "atuin-client", version = "13.0.0", optional = true, default-features = false }
-atuin-common = { path = "atuin-common", version = "13.0.0" }
+atuin-server = { path = "atuin-server", version = "13.0.1", optional = true }
+atuin-client = { path = "atuin-client", version = "13.0.1", optional = true, default-features = false }
+atuin-common = { path = "atuin-common", version = "13.0.1" }
log = "0.4"
env_logger = "0.10.0"
diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml
index 7284191e2..1fc5baf13 100644
--- a/atuin-client/Cargo.toml
+++ b/atuin-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-client"
-version = "13.0.0"
+version = "13.0.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@@ -23,7 +23,7 @@ sync = [
]
[dependencies]
-atuin-common = { path = "../atuin-common", version = "13.0.0" }
+atuin-common = { path = "../atuin-common", version = "13.0.1" }
log = "0.4"
chrono = { version = "0.4", features = ["serde"] }
diff --git a/atuin-common/Cargo.toml b/atuin-common/Cargo.toml
index 636a51d52..7c4075036 100644
--- a/atuin-common/Cargo.toml
+++ b/atuin-common/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-common"
-version = "13.0.0"
+version = "13.0.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml
index 808826cc5..9a9c2890b 100644
--- a/atuin-server/Cargo.toml
+++ b/atuin-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "atuin-server"
-version = "13.0.0"
+version = "13.0.1"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"
@@ -9,7 +9,7 @@ homepage = "https://atuin.sh"
repository = "https://github.com/ellie/atuin"
[dependencies]
-atuin-common = { path = "../atuin-common", version = "13.0.0" }
+atuin-common = { path = "../atuin-common", version = "13.0.1" }
tracing = "0.1"
chrono = { version = "0.4", features = ["serde"] }
diff --git a/docs/blog/2023/02-26-release-v13/index.md b/docs/blog/2023/02-26-release-v13/index.md
index 24936345e..353c795ce 100644
--- a/docs/blog/2023/02-26-release-v13/index.md
+++ b/docs/blog/2023/02-26-release-v13/index.md
@@ -6,12 +6,15 @@ authors: [ellie]
tags: [release]
---
+> We have since released patch v13.0.1. v13 had a regression exposed when trying to register a new user. This would only affect people self-hosting Atuin Server. Please update!
+
Announcing a new release of Atuin! v13 is out now. Atuin allows you to easily search and sync your shell history across many machines.
You can update your installation via your system package manager, or by downloading the latest release from the [release page](https://github.com/ellie/atuin/releases).
We had a lot of changes in this release - I'll call out a few, but this is not exhaustive.
+
## Crossterm
Deserving of a special callout, we now use [Crossterm](https://github.com/ellie/atuin/pull/331) as our TUI backend - this has been a huge effort, and has taken almost a year. Thank you to Conrad for pushing through it, and [@pdecat](https://github.com/pdecat) for your contributions!