chore(release): prepare for release 18.5.0-beta.3 (#2678)

This commit is contained in:
Ellie Huxtable
2025-04-07 14:33:24 +01:00
committed by GitHub
parent f162d641a7
commit 1f6031d84a
11 changed files with 37 additions and 32 deletions

View File

@ -9,9 +9,11 @@ All notable changes to this project will be documented in this file.
- *(1289)* Clear terminal area if inline ([#2600](https://github.com/atuinsh/atuin/issues/2600))
- *(bash)* Fix preexec of child Bash session started by enter_accept ([#2558](https://github.com/atuinsh/atuin/issues/2558))
- *(build)* Change atuin-daemon build script .proto paths ([#2638](https://github.com/atuinsh/atuin/issues/2638))
- *(kv)* Filter deleted keys from `kv list` ([#2665](https://github.com/atuinsh/atuin/issues/2665))
- *(stats)* Ignore leading environment variables when calculating stats ([#2659](https://github.com/atuinsh/atuin/issues/2659))
- *(wrapped)* Fix crash when history is empty ([#2508](https://github.com/atuinsh/atuin/issues/2508))
- *(zsh)* Fix an error introduced earilier with support for bracketed paste mode ([#2651](https://github.com/atuinsh/atuin/issues/2651))
- *(zsh)* Avoid calling user-defined widgets when searching for history position ([#2670](https://github.com/atuinsh/atuin/issues/2670))
- Add .histfile as file to look for when doing atuin import zsh ([#2588](https://github.com/atuinsh/atuin/issues/2588))
- Panic when invoking delete on empty tui ([#2584](https://github.com/atuinsh/atuin/issues/2584))
- Sql files checksums ([#2601](https://github.com/atuinsh/atuin/issues/2601))
@ -22,6 +24,7 @@ All notable changes to this project will be documented in this file.
- Typeerror in client sync code ([#2647](https://github.com/atuinsh/atuin/issues/2647))
- Add redundant clones to clippy and cleanup instances of it ([#2654](https://github.com/atuinsh/atuin/issues/2654))
- Allow -ve values for timezone ([#2609](https://github.com/atuinsh/atuin/issues/2609))
- Fish up binding bug ([#2677](https://github.com/atuinsh/atuin/issues/2677))
### Documentation
@ -42,6 +45,7 @@ All notable changes to this project will be documented in this file.
- Use readline binding for ctrl-a when it is not the prefix ([#2626](https://github.com/atuinsh/atuin/issues/2626))
- Option to include duplicate commands when printing history commands ([#2407](https://github.com/atuinsh/atuin/issues/2407))
- Binaries as subcommands ([#2661](https://github.com/atuinsh/atuin/issues/2661))
- Support storing, syncing and executing scripts ([#2644](https://github.com/atuinsh/atuin/issues/2644))
### Miscellaneous Tasks
@ -52,6 +56,7 @@ All notable changes to this project will be documented in this file.
- Migrate to rust 2024 ([#2635](https://github.com/atuinsh/atuin/issues/2635))
- Show host and user in inspector ([#2634](https://github.com/atuinsh/atuin/issues/2634))
- Update to rust 1.85.1 ([#2642](https://github.com/atuinsh/atuin/issues/2642))
- Update to rust 1.86 ([#2666](https://github.com/atuinsh/atuin/issues/2666))
### Performance

20
Cargo.lock generated
View File

@ -221,7 +221,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "atuin"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"arboard",
"async-trait",
@ -268,7 +268,7 @@ dependencies = [
[[package]]
name = "atuin-client"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"async-trait",
"atuin-common",
@ -323,7 +323,7 @@ dependencies = [
[[package]]
name = "atuin-common"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"base64 0.22.1",
"directories",
@ -343,7 +343,7 @@ dependencies = [
[[package]]
name = "atuin-daemon"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"atuin-client",
"atuin-dotfiles",
@ -370,7 +370,7 @@ dependencies = [
[[package]]
name = "atuin-dotfiles"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"atuin-client",
"atuin-common",
@ -384,7 +384,7 @@ dependencies = [
[[package]]
name = "atuin-history"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"atuin-client",
"crossterm",
@ -397,7 +397,7 @@ dependencies = [
[[package]]
name = "atuin-scripts"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"atuin-client",
"atuin-common",
@ -419,7 +419,7 @@ dependencies = [
[[package]]
name = "atuin-server"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"argon2",
"async-trait",
@ -448,7 +448,7 @@ dependencies = [
[[package]]
name = "atuin-server-database"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"async-trait",
"atuin-common",
@ -460,7 +460,7 @@ dependencies = [
[[package]]
name = "atuin-server-postgres"
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
dependencies = [
"async-trait",
"atuin-common",

View File

@ -5,7 +5,7 @@ resolver = "2"
exclude = ["ui/backend"]
[workspace.package]
version = "18.5.0-beta.2"
version = "18.5.0-beta.3"
authors = ["Ellie Huxtable <ellie@atuin.sh>"]
rust-version = "1.86"
license = "MIT"

View File

@ -19,7 +19,7 @@ daemon = []
check-update = []
[dependencies]
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
log = { workspace = true }
base64 = { workspace = true }

View File

@ -14,9 +14,9 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.2" }
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.2" }
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" }
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" }
time = { workspace = true }
uuid = { workspace = true }

View File

@ -14,8 +14,8 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
eyre = { workspace = true }
tokio = { workspace = true }

View File

@ -14,7 +14,7 @@ readme.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" }
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
time = { workspace = true }
serde = { workspace = true }

View File

@ -10,7 +10,7 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
tracing = { workspace = true }
time = { workspace = true }

View File

@ -10,8 +10,8 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.2" }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" }
eyre = { workspace = true }
tracing = { workspace = true }

View File

@ -11,8 +11,8 @@ homepage = { workspace = true }
repository = { workspace = true }
[dependencies]
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.2" }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" }
tracing = { workspace = true }
time = { workspace = true }

View File

@ -42,14 +42,14 @@ clipboard = ["arboard"]
check-update = ["atuin-client/check-update"]
[dependencies]
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0-beta.2", optional = true }
atuin-server = { path = "../atuin-server", version = "18.5.0-beta.2", optional = true }
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.2" }
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.2" }
atuin-daemon = { path = "../atuin-daemon", version = "18.5.0-beta.2", optional = true, default-features = false }
atuin-scripts = { path = "../atuin-scripts", version = "18.5.0-beta.2" }
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0-beta.3", optional = true }
atuin-server = { path = "../atuin-server", version = "18.5.0-beta.3", optional = true }
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" }
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" }
atuin-daemon = { path = "../atuin-daemon", version = "18.5.0-beta.3", optional = true, default-features = false }
atuin-scripts = { path = "../atuin-scripts", version = "18.5.0-beta.3" }
log = { workspace = true }
time = { workspace = true }