diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2025-10-21 14:37:49 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-21 14:37:49 -0700 |
| commit | 37e257105ab801b49fd07a927d707a36a2e771a1 (patch) | |
| tree | e2c92637f9f8d61825f31dbcf2c45ccf00623ea1 | |
| parent | Revert "feat: more accurately filter secret tokens" (#2961) (diff) | |
| download | atuin-37e257105ab801b49fd07a927d707a36a2e771a1.zip | |
chore(release): prepare for release 18.10.0 (#2962)
<!-- Thank you for making a PR! Bug fixes are always welcome, but if
you're adding a new feature or changing an existing one, we'd really
appreciate if you open an issue, post on the forum, or drop in on
Discord -->
## Checks
- [ ] I am happy for maintainers to push small adjustments to this PR,
to speed up the review cycle
- [ ] I have checked that there are no existing pull requests for the
same thing
| -rw-r--r-- | Cargo.lock | 24 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-client/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-daemon/Cargo.toml | 6 | ||||
| -rw-r--r-- | crates/atuin-dotfiles/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-history/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-kv/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-scripts/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server-database/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/atuin-server-postgres/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server-sqlite/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin-server/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/atuin/Cargo.toml | 22 |
13 files changed, 42 insertions, 42 deletions
@@ -217,7 +217,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "atuin" -version = "18.9.0" +version = "18.10.0" dependencies = [ "arboard", "async-trait", @@ -269,7 +269,7 @@ dependencies = [ [[package]] name = "atuin-client" -version = "18.9.0" +version = "18.10.0" dependencies = [ "async-trait", "atuin-common", @@ -324,7 +324,7 @@ dependencies = [ [[package]] name = "atuin-common" -version = "18.9.0" +version = "18.10.0" dependencies = [ "base64 0.22.1", "directories", @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "atuin-daemon" -version = "18.9.0" +version = "18.10.0" dependencies = [ "atuin-client", "atuin-dotfiles", @@ -371,7 +371,7 @@ dependencies = [ [[package]] name = "atuin-dotfiles" -version = "18.9.0" +version = "18.10.0" dependencies = [ "atuin-client", "atuin-common", @@ -385,7 +385,7 @@ dependencies = [ [[package]] name = "atuin-history" -version = "18.9.0" +version = "18.10.0" dependencies = [ "atuin-client", "crossterm", @@ -398,7 +398,7 @@ dependencies = [ [[package]] name = "atuin-kv" -version = "18.9.0" +version = "18.10.0" dependencies = [ "atuin-client", "atuin-common", @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "atuin-scripts" -version = "18.9.0" +version = "18.10.0" dependencies = [ "atuin-client", "atuin-common", @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "atuin-server" -version = "18.9.0" +version = "18.10.0" dependencies = [ "argon2", "async-trait", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "atuin-server-database" -version = "18.9.0" +version = "18.10.0" dependencies = [ "async-trait", "atuin-common", @@ -478,7 +478,7 @@ dependencies = [ [[package]] name = "atuin-server-postgres" -version = "18.9.0" +version = "18.10.0" dependencies = [ "async-trait", "atuin-common", @@ -496,7 +496,7 @@ dependencies = [ [[package]] name = "atuin-server-sqlite" -version = "18.9.0" +version = "18.10.0" dependencies = [ "async-trait", "atuin-common", @@ -5,7 +5,7 @@ resolver = "2" exclude = ["ui/backend"] [workspace.package] -version = "18.9.0" +version = "18.10.0" authors = ["Ellie Huxtable <ellie@atuin.sh>"] rust-version = "1.90" license = "MIT" diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index 67069afe..407ff491 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.9.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index 4d23d097..3a791a47 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.9.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.9.0" } -atuin-history = { path = "../atuin-history", version = "18.9.0" } +atuin-client = { path = "../atuin-client", version = "18.10.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.10.0" } +atuin-history = { path = "../atuin-history", version = "18.10.0" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index c3d7db01..84b2d823 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.9.0" } -atuin-client = { path = "../atuin-client", version = "18.9.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } +atuin-client = { path = "../atuin-client", version = "18.10.0" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index 88a21d11..7153ed83 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.9.0" } +atuin-client = { path = "../atuin-client", version = "18.10.0" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml index e8c0f35e..aeedfa59 100644 --- a/crates/atuin-kv/Cargo.toml +++ b/crates/atuin-kv/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-client = { path = "../atuin-client", version = "18.9.0" } -atuin-common = { path = "../atuin-common", version = "18.9.0" } +atuin-client = { path = "../atuin-client", version = "18.10.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml index 72903908..007ff860 100644 --- a/crates/atuin-scripts/Cargo.toml +++ b/crates/atuin-scripts/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-client = { path = "../atuin-client", version = "18.9.0" } -atuin-common = { path = "../atuin-common", version = "18.9.0" } +atuin-client = { path = "../atuin-client", version = "18.10.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index 01ee0726..9766cc71 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.9.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index 5f42ea02..5abcd931 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.9.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.9.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.10.0" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml index a0d435bf..5d22b6db 100644 --- a/crates/atuin-server-sqlite/Cargo.toml +++ b/crates/atuin-server-sqlite/Cargo.toml @@ -10,8 +10,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "18.9.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.9.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.10.0" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index 874bd1c2..ad94c379 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.9.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.9.0" } +atuin-common = { path = "../atuin-common", version = "18.10.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.10.0" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index 33e358e4..52f245ac 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -47,17 +47,17 @@ clipboard = ["arboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-server-database = { path = "../atuin-server-database", version = "18.9.0", optional = true } -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.9.0", optional = true } -atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.9.0", optional = true } -atuin-server = { path = "../atuin-server", version = "18.9.0", optional = true } -atuin-client = { path = "../atuin-client", version = "18.9.0", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "18.9.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.9.0" } -atuin-history = { path = "../atuin-history", version = "18.9.0" } -atuin-daemon = { path = "../atuin-daemon", version = "18.9.0", optional = true, default-features = false } -atuin-scripts = { path = "../atuin-scripts", version = "18.9.0" } -atuin-kv = { path = "../atuin-kv", version = "18.9.0" } +atuin-server-database = { path = "../atuin-server-database", version = "18.10.0", optional = true } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.10.0", optional = true } +atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.10.0", optional = true } +atuin-server = { path = "../atuin-server", version = "18.10.0", optional = true } +atuin-client = { path = "../atuin-client", version = "18.10.0", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "18.10.0" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.10.0" } +atuin-history = { path = "../atuin-history", version = "18.10.0" } +atuin-daemon = { path = "../atuin-daemon", version = "18.10.0", optional = true, default-features = false } +atuin-scripts = { path = "../atuin-scripts", version = "18.10.0" } +atuin-kv = { path = "../atuin-kv", version = "18.10.0" } log = { workspace = true } time = { workspace = true } |
