diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2026-01-28 15:49:38 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-28 15:49:38 -0800 |
| commit | 02087e509650c10dc7173fdfc9b5b52603265f03 (patch) | |
| tree | 838cc7eae1a2230ce1583243a9a692ef6289def2 /crates | |
| parent | feat: move atuin-server to its own binary (#3112) (diff) | |
| download | atuin-02087e509650c10dc7173fdfc9b5b52603265f03.zip | |
chore(release): prepare for release 18.12.0-beta.1 (#3113)
<!-- 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
Diffstat (limited to 'crates')
| -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 | 8 | ||||
| -rw-r--r-- | crates/atuin/Cargo.toml | 20 |
11 files changed, 30 insertions, 30 deletions
diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml index c727f019..34621c90 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.11.0" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } log = { workspace = true } base64 = { workspace = true } diff --git a/crates/atuin-daemon/Cargo.toml b/crates/atuin-daemon/Cargo.toml index 3c828205..e4b9810b 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.11.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.11.0" } -atuin-history = { path = "../atuin-history", version = "18.11.0" } +atuin-client = { path = "../atuin-client", version = "18.12.0-beta.1" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.12.0-beta.1" } +atuin-history = { path = "../atuin-history", version = "18.12.0-beta.1" } time = { workspace = true } uuid = { workspace = true } diff --git a/crates/atuin-dotfiles/Cargo.toml b/crates/atuin-dotfiles/Cargo.toml index 1f5d990e..827662b0 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.11.0" } -atuin-client = { path = "../atuin-client", version = "18.11.0" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } +atuin-client = { path = "../atuin-client", version = "18.12.0-beta.1" } eyre = { workspace = true } tokio = { workspace = true } diff --git a/crates/atuin-history/Cargo.toml b/crates/atuin-history/Cargo.toml index ce4220b1..60d714bb 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.11.0" } +atuin-client = { path = "../atuin-client", version = "18.12.0-beta.1" } time = { workspace = true } serde = { workspace = true } diff --git a/crates/atuin-kv/Cargo.toml b/crates/atuin-kv/Cargo.toml index e41c7b47..ec666382 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.11.0" } -atuin-common = { path = "../atuin-common", version = "18.11.0" } +atuin-client = { path = "../atuin-client", version = "18.12.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-scripts/Cargo.toml b/crates/atuin-scripts/Cargo.toml index aed696ba..0dbc650d 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.11.0" } -atuin-common = { path = "../atuin-common", version = "18.11.0" } +atuin-client = { path = "../atuin-client", version = "18.12.0-beta.1" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } tracing = { workspace = true } tracing-subscriber = { workspace = true } diff --git a/crates/atuin-server-database/Cargo.toml b/crates/atuin-server-database/Cargo.toml index 537e34a2..ddf1080f 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.11.0" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin-server-postgres/Cargo.toml b/crates/atuin-server-postgres/Cargo.toml index c73e4a52..5667ddbf 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.11.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.11.0" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.12.0-beta.1" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server-sqlite/Cargo.toml b/crates/atuin-server-sqlite/Cargo.toml index d9acf39a..c90dc924 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.11.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.11.0" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.12.0-beta.1" } eyre = { workspace = true } tracing = { workspace = true } diff --git a/crates/atuin-server/Cargo.toml b/crates/atuin-server/Cargo.toml index edda2532..ecf5a3aa 100644 --- a/crates/atuin-server/Cargo.toml +++ b/crates/atuin-server/Cargo.toml @@ -19,10 +19,10 @@ name = "atuin-server" path = "src/bin/main.rs" [dependencies] -atuin-common = { path = "../atuin-common", version = "18.11.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.11.0" } -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.11.0" } -atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.11.0" } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.12.0-beta.1" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.12.0-beta.1" } +atuin-server-sqlite = { path = "../atuin-server-sqlite", version = "18.12.0-beta.1" } tracing = { workspace = true } time = { workspace = true } diff --git a/crates/atuin/Cargo.toml b/crates/atuin/Cargo.toml index f75c52b5..5dac8202 100644 --- a/crates/atuin/Cargo.toml +++ b/crates/atuin/Cargo.toml @@ -41,13 +41,13 @@ clipboard = ["arboard"] check-update = ["atuin-client/check-update"] [dependencies] -atuin-client = { path = "../atuin-client", version = "18.11.0", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "18.11.0" } -atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.11.0" } -atuin-history = { path = "../atuin-history", version = "18.11.0" } -atuin-daemon = { path = "../atuin-daemon", version = "18.11.0", optional = true, default-features = false } -atuin-scripts = { path = "../atuin-scripts", version = "18.11.0" } -atuin-kv = { path = "../atuin-kv", version = "18.11.0" } +atuin-client = { path = "../atuin-client", version = "18.12.0-beta.1", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "18.12.0-beta.1" } +atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.12.0-beta.1" } +atuin-history = { path = "../atuin-history", version = "18.12.0-beta.1" } +atuin-daemon = { path = "../atuin-daemon", version = "18.12.0-beta.1", optional = true, default-features = false } +atuin-scripts = { path = "../atuin-scripts", version = "18.12.0-beta.1" } +atuin-kv = { path = "../atuin-kv", version = "18.12.0-beta.1" } log = { workspace = true } time = { workspace = true } @@ -96,6 +96,6 @@ tracing-tree = "0.4" # Integration tests in tests/ spin up a test server to verify sync functionality. # TODO: Consider moving these tests to atuin-server crate instead (client would become a dev dep there) -atuin-server = { path = "../atuin-server", version = "18.11.0" } -atuin-server-database = { path = "../atuin-server-database", version = "18.11.0" } -atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.11.0" } +atuin-server = { path = "../atuin-server", version = "18.12.0-beta.1" } +atuin-server-database = { path = "../atuin-server-database", version = "18.12.0-beta.1" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.12.0-beta.1" } |
