aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2025-04-08 17:05:12 +0100
committerGitHub <noreply@github.com>2025-04-08 17:05:12 +0100
commit09fc76ed825114c32c863eb3b56e967fbec54047 (patch)
treedde00bfb3f2411680de618136f86edef4ca253ca
parentfeat: Add 'atuin scripts rm' and 'atuin scripts ls' aliases; allow reading fr... (diff)
downloadatuin-09fc76ed825114c32c863eb3b56e967fbec54047.zip
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
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.lock20
-rw-r--r--Cargo.toml2
-rw-r--r--crates/atuin-client/Cargo.toml2
-rw-r--r--crates/atuin-daemon/Cargo.toml6
-rw-r--r--crates/atuin-dotfiles/Cargo.toml4
-rw-r--r--crates/atuin-history/Cargo.toml2
-rw-r--r--crates/atuin-server-database/Cargo.toml2
-rw-r--r--crates/atuin-server-postgres/Cargo.toml4
-rw-r--r--crates/atuin-server/Cargo.toml4
-rw-r--r--crates/atuin/Cargo.toml16
11 files changed, 32 insertions, 31 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 41bb4e2e..a826f096 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/Cargo.lock b/Cargo.lock
index 1bb722c7..9e835ce4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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",
diff --git a/Cargo.toml b/Cargo.toml
index 7e58edef..78fca854 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml
index 37b7d200..cdeded3d 100644
--- a/crates/atuin-client/Cargo.toml
+++ b/crates/atuin-client/Cargo.toml
@@ -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 }
diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml
index 6739550d..511bd842 100644
--- a/crates/atuin-daemon/Cargo.toml
+++ b/crates/atuin-daemon/Cargo.toml
@@ -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 }
diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml
index d86b4b64..1ba73e63 100644
--- a/crates/atuin-dotfiles/Cargo.toml
+++ b/crates/atuin-dotfiles/Cargo.toml
@@ -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 }
diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml
index 216e243e..5df613a8 100644
--- a/crates/atuin-history/Cargo.toml
+++ b/crates/atuin-history/Cargo.toml
@@ -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 }
diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml
index 917b0f5d..c122991f 100644
--- a/crates/atuin-server-database/Cargo.toml
+++ b/crates/atuin-server-database/Cargo.toml
@@ -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 }
diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml
index 0f667c8e..9b0f1f7a 100644
--- a/crates/atuin-server-postgres/Cargo.toml
+++ b/crates/atuin-server-postgres/Cargo.toml
@@ -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 }
diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml
index 085b96de..1445a8ab 100644
--- a/crates/atuin-server/Cargo.toml
+++ b/crates/atuin-server/Cargo.toml
@@ -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 }
diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml
index e653ecfa..a31d3df7 100644
--- a/crates/atuin/Cargo.toml
+++ b/crates/atuin/Cargo.toml
@@ -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 }