Patch release v13.0.1 (#741)

* Patch release v13.0.1

* Update blog post
This commit is contained in:
Ellie Huxtable 2023-02-28 21:44:39 +00:00 committed by GitHub
parent fe67dbb96c
commit e4fde80acc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 13 deletions

8
Cargo.lock generated
View File

@ -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",

View File

@ -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"

View File

@ -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"] }

View File

@ -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"

View File

@ -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"] }

View File

@ -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!