Skip to content

Commit 1f6031d

Browse files
authored
chore(release): prepare for release 18.5.0-beta.3 (#2678)
1 parent f162d64 commit 1f6031d

File tree

11 files changed

+37
-32
lines changed

11 files changed

+37
-32
lines changed

Diff for: CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@ All notable changes to this project will be documented in this file.
99
- *(1289)* Clear terminal area if inline ([#2600](https://github.com/atuinsh/atuin/issues/2600))
1010
- *(bash)* Fix preexec of child Bash session started by enter_accept ([#2558](https://github.com/atuinsh/atuin/issues/2558))
1111
- *(build)* Change atuin-daemon build script .proto paths ([#2638](https://github.com/atuinsh/atuin/issues/2638))
12+
- *(kv)* Filter deleted keys from `kv list` ([#2665](https://github.com/atuinsh/atuin/issues/2665))
1213
- *(stats)* Ignore leading environment variables when calculating stats ([#2659](https://github.com/atuinsh/atuin/issues/2659))
1314
- *(wrapped)* Fix crash when history is empty ([#2508](https://github.com/atuinsh/atuin/issues/2508))
1415
- *(zsh)* Fix an error introduced earilier with support for bracketed paste mode ([#2651](https://github.com/atuinsh/atuin/issues/2651))
16+
- *(zsh)* Avoid calling user-defined widgets when searching for history position ([#2670](https://github.com/atuinsh/atuin/issues/2670))
1517
- Add .histfile as file to look for when doing atuin import zsh ([#2588](https://github.com/atuinsh/atuin/issues/2588))
1618
- Panic when invoking delete on empty tui ([#2584](https://github.com/atuinsh/atuin/issues/2584))
1719
- 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.
2224
- Typeerror in client sync code ([#2647](https://github.com/atuinsh/atuin/issues/2647))
2325
- Add redundant clones to clippy and cleanup instances of it ([#2654](https://github.com/atuinsh/atuin/issues/2654))
2426
- Allow -ve values for timezone ([#2609](https://github.com/atuinsh/atuin/issues/2609))
27+
- Fish up binding bug ([#2677](https://github.com/atuinsh/atuin/issues/2677))
2528

2629

2730
### Documentation
@@ -42,6 +45,7 @@ All notable changes to this project will be documented in this file.
4245
- Use readline binding for ctrl-a when it is not the prefix ([#2626](https://github.com/atuinsh/atuin/issues/2626))
4346
- Option to include duplicate commands when printing history commands ([#2407](https://github.com/atuinsh/atuin/issues/2407))
4447
- Binaries as subcommands ([#2661](https://github.com/atuinsh/atuin/issues/2661))
48+
- Support storing, syncing and executing scripts ([#2644](https://github.com/atuinsh/atuin/issues/2644))
4549

4650

4751
### Miscellaneous Tasks
@@ -52,6 +56,7 @@ All notable changes to this project will be documented in this file.
5256
- Migrate to rust 2024 ([#2635](https://github.com/atuinsh/atuin/issues/2635))
5357
- Show host and user in inspector ([#2634](https://github.com/atuinsh/atuin/issues/2634))
5458
- Update to rust 1.85.1 ([#2642](https://github.com/atuinsh/atuin/issues/2642))
59+
- Update to rust 1.86 ([#2666](https://github.com/atuinsh/atuin/issues/2666))
5560

5661

5762
### Performance
@@ -595,7 +600,7 @@ All notable changes to this project will be documented in this file.
595600
- *(install)* Discord broken link
596601
- *(shell)* Respect ZSH's $ZDOTDIR environment variable ([#1441](https://github.com/atuinsh/atuin/issues/1441))
597602
- *(stats)* Don't require all fields under [stats] ([#1437](https://github.com/atuinsh/atuin/issues/1437))
598-
- *(stats)* Time now_local not working
603+
- *(stats)* Time now_local not working
599604
- *(zsh)* Zsh_autosuggest_strategy for no-unset environment ([#1486](https://github.com/atuinsh/atuin/issues/1486))
600605

601606

Diff for: Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55
exclude = ["ui/backend"]
66

77
[workspace.package]
8-
version = "18.5.0-beta.2"
8+
version = "18.5.0-beta.3"
99
authors = ["Ellie Huxtable <[email protected]>"]
1010
rust-version = "1.86"
1111
license = "MIT"

Diff for: crates/atuin-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ daemon = []
1919
check-update = []
2020

2121
[dependencies]
22-
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
22+
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
2323

2424
log = { workspace = true }
2525
base64 = { workspace = true }

Diff for: crates/atuin-daemon/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ readme.workspace = true
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" }
18-
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.2" }
19-
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.2" }
17+
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
18+
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" }
19+
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" }
2020

2121
time = { workspace = true }
2222
uuid = { workspace = true }

Diff for: crates/atuin-dotfiles/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ readme.workspace = true
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
18-
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" }
17+
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
18+
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
1919

2020
eyre = { workspace = true }
2121
tokio = { workspace = true }

Diff for: crates/atuin-history/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme.workspace = true
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2" }
17+
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3" }
1818

1919
time = { workspace = true }
2020
serde = { workspace = true }

Diff for: crates/atuin-server-database/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = { workspace = true }
1010
repository = { workspace = true }
1111

1212
[dependencies]
13-
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
13+
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
1414

1515
tracing = { workspace = true }
1616
time = { workspace = true }

Diff for: crates/atuin-server-postgres/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ homepage = { workspace = true }
1010
repository = { workspace = true }
1111

1212
[dependencies]
13-
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
14-
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.2" }
13+
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
14+
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" }
1515

1616
eyre = { workspace = true }
1717
tracing = { workspace = true }

Diff for: crates/atuin-server/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ homepage = { workspace = true }
1111
repository = { workspace = true }
1212

1313
[dependencies]
14-
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
15-
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.2" }
14+
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
15+
atuin-server-database = { path = "../atuin-server-database", version = "18.5.0-beta.3" }
1616

1717
tracing = { workspace = true }
1818
time = { workspace = true }

Diff for: crates/atuin/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ clipboard = ["arboard"]
4242
check-update = ["atuin-client/check-update"]
4343

4444
[dependencies]
45-
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0-beta.2", optional = true }
46-
atuin-server = { path = "../atuin-server", version = "18.5.0-beta.2", optional = true }
47-
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.2", optional = true, default-features = false }
48-
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.2" }
49-
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.2" }
50-
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.2" }
51-
atuin-daemon = { path = "../atuin-daemon", version = "18.5.0-beta.2", optional = true, default-features = false }
52-
atuin-scripts = { path = "../atuin-scripts", version = "18.5.0-beta.2" }
45+
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.5.0-beta.3", optional = true }
46+
atuin-server = { path = "../atuin-server", version = "18.5.0-beta.3", optional = true }
47+
atuin-client = { path = "../atuin-client", version = "18.5.0-beta.3", optional = true, default-features = false }
48+
atuin-common = { path = "../atuin-common", version = "18.5.0-beta.3" }
49+
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.5.0-beta.3" }
50+
atuin-history = { path = "../atuin-history", version = "18.5.0-beta.3" }
51+
atuin-daemon = { path = "../atuin-daemon", version = "18.5.0-beta.3", optional = true, default-features = false }
52+
atuin-scripts = { path = "../atuin-scripts", version = "18.5.0-beta.3" }
5353

5454
log = { workspace = true }
5555
time = { workspace = true }

0 commit comments

Comments
 (0)