mirror of
https://github.com/atuinsh/atuin.git
synced 2025-08-04 18:58:13 +00:00
chore(release): prepare for release 18.5.0 (#2685)
* chore(release): prepare for release 18.5.0 * update workflow ubuntu version * revert because dist checks lol
This commit is contained in:
parent
a62d27c5f1
commit
09fc76ed82
11 changed files with 32 additions and 31 deletions
|
@ -46,6 +46,7 @@ All notable changes to this project will be documented in this file.
|
|||
- 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))
|
||||
- Add 'atuin scripts rm' and 'atuin scripts ls' aliases; allow reading from stdin ([#2680](https://github.com/atuinsh/atuin/issues/2680))
|
||||
|
||||
|
||||
### Miscellaneous Tasks
|
||||
|
|
20
Cargo.lock
generated
20
Cargo.lock
generated
|
@ -221,7 +221,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|||
|
||||
[[package]]
|
||||
name = "atuin"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"arboard",
|
||||
"async-trait",
|
||||
|
@ -268,7 +268,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-client"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-common",
|
||||
|
@ -323,7 +323,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-common"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"base64 0.22.1",
|
||||
"directories",
|
||||
|
@ -343,7 +343,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-daemon"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"atuin-client",
|
||||
"atuin-dotfiles",
|
||||
|
@ -370,7 +370,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-dotfiles"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"atuin-client",
|
||||
"atuin-common",
|
||||
|
@ -384,7 +384,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-history"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"atuin-client",
|
||||
"crossterm",
|
||||
|
@ -397,7 +397,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-scripts"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"atuin-client",
|
||||
"atuin-common",
|
||||
|
@ -419,7 +419,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-server"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"argon2",
|
||||
"async-trait",
|
||||
|
@ -448,7 +448,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-server-database"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-common",
|
||||
|
@ -460,7 +460,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "atuin-server-postgres"
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"atuin-common",
|
||||
|
|
|
@ -5,7 +5,7 @@ resolver = "2"
|
|||
exclude = ["ui/backend"]
|
||||
|
||||
[workspace.package]
|
||||
version = "18.5.0-beta.3"
|
||||
version = "18.5.0"
|
||||
authors = ["Ellie Huxtable <ellie@atuin.sh>"]
|
||||
rust-version = "1.86"
|
||||
license = "MIT"
|
||||
|
|
|
@ -19,7 +19,7 @@ daemon = []
|
|||
check-update = []
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0" }
|
||||
|
||||
log = { workspace = true }
|
||||
base64 = { workspace = true }
|
||||
|
|
|
@ -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.3" }
|
||||
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" }
|
||||
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" }
|
||||
atuin-client = { path = "../atuin-client", version = "18.5.0" }
|
||||
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0" }
|
||||
atuin-history = { path = "../atuin-history", version = "18.5.0" }
|
||||
|
||||
time = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
|
|
|
@ -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.3" }
|
||||
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0" }
|
||||
atuin-client = { path = "../atuin-client", version = "18.5.0" }
|
||||
|
||||
eyre = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
|
|
|
@ -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.3" }
|
||||
atuin-client = { path = "../atuin-client", version = "18.5.0" }
|
||||
|
||||
time = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
|
|
|
@ -10,7 +10,7 @@ homepage = { workspace = true }
|
|||
repository = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0" }
|
||||
|
||||
tracing = { workspace = true }
|
||||
time = { workspace = true }
|
||||
|
|
|
@ -10,8 +10,8 @@ homepage = { workspace = true }
|
|||
repository = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" }
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0" }
|
||||
|
||||
eyre = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
|
|
|
@ -11,8 +11,8 @@ homepage = { workspace = true }
|
|||
repository = { workspace = true }
|
||||
|
||||
[dependencies]
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" }
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0" }
|
||||
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0" }
|
||||
|
||||
tracing = { workspace = true }
|
||||
time = { workspace = true }
|
||||
|
|
|
@ -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.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" }
|
||||
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0", optional = true }
|
||||
atuin-server = { path = "../atuin-server", version = "18.5.0", optional = true }
|
||||
atuin-client = { path = "../atuin-client", version = "18.5.0", optional = true, default-features = false }
|
||||
atuin-common = { path = "../atuin-common", version = "18.5.0" }
|
||||
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0" }
|
||||
atuin-history = { path = "../atuin-history", version = "18.5.0" }
|
||||
atuin-daemon = { path = "../atuin-daemon", version = "18.5.0", optional = true, default-features = false }
|
||||
atuin-scripts = { path = "../atuin-scripts", version = "18.5.0" }
|
||||
|
||||
log = { workspace = true }
|
||||
time = { workspace = true }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue