Skip to content

Commit dc7c26a

Browse files
authored
chore(release): prepare for release v18.4.0 (#2495)
1 parent aa5c7e7 commit dc7c26a

File tree

12 files changed

+34
-33
lines changed

12 files changed

+34
-33
lines changed

Diff for: CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ All notable changes to this project will be documented in this file.
8383
- Ultracompact Mode (search-only) ([#2357](https://github.com/atuinsh/atuin/issues/2357))
8484
- Right Arrow to modify selected command ([#2453](https://github.com/atuinsh/atuin/issues/2453))
8585
- Provide additional clarity around key management ([#2467](https://github.com/atuinsh/atuin/issues/2467))
86+
- Add `atuin wrapped` ([#2493](https://github.com/atuinsh/atuin/issues/2493))
8687

8788

8889
### Miscellaneous Tasks

Diff for: CONTRIBUTORS

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Dieter Eickstaedt <[email protected]>
4242
Dom Rodriguez <[email protected]>
4343
Dongxu Wang <[email protected]>
4444
DS/Charlie <[email protected]>
45+
éclairevoyant <[email protected]>
4546
4647
Edward Loveall <[email protected]>
4748
Ellie Huxtable <[email protected]>
@@ -77,6 +78,7 @@ Jamie Quigley <[email protected]>
7778
Jan Larres <[email protected]>
7879
7980
81+
János Illés <[email protected]>
8082
Jax Young <[email protected]>
8183
jean-santos <[email protected]>
8284
jean-santos <[email protected]>
@@ -93,7 +95,6 @@ Josef Friedrich <[email protected]>
9395
9496
9597
Justin Su <[email protected]>
96-
János Illés <[email protected]>
9798
Kjetil Jørgensen <[email protected]>
9899
Klas Mellbourn <[email protected]>
99100
Koichi Murase <[email protected]>
@@ -142,8 +143,8 @@ Nico Kokonas <[email protected]>
142143
Niklas Hambüchen <[email protected]>
143144
144145
Omer Katz <[email protected]>
145-
146146
147+
147148
Orhun Parmaksız <[email protected]>
148149
149150
@@ -208,6 +209,5 @@ YummyOreo <[email protected]>
208209
Yuvi Panda <[email protected]>
209210
Zhanibek Adilbekov <[email protected]>
210211
ZhiHong Li <[email protected]>
211-
éclairevoyant <[email protected]>
212212
213213
镜面王子 <[email protected]>

Diff for: Cargo.lock

+9-9
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.4.0-beta.5"
8+
version = "18.4.0"
99
authors = ["Ellie Huxtable <[email protected]>"]
1010
rust-version = "1.82"
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.4.0-beta.5" }
22+
atuin-common = { path = "../atuin-common", version = "18.4.0" }
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.4.0-beta.5" }
18-
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0-beta.5" }
19-
atuin-history = { path = "../atuin-history", version = "18.4.0-beta.5" }
17+
atuin-client = { path = "../atuin-client", version = "18.4.0" }
18+
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0" }
19+
atuin-history = { path = "../atuin-history", version = "18.4.0" }
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.4.0-beta.5" }
18-
atuin-client = { path = "../atuin-client", version = "18.4.0-beta.5" }
17+
atuin-common = { path = "../atuin-common", version = "18.4.0" }
18+
atuin-client = { path = "../atuin-client", version = "18.4.0" }
1919

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

Diff for: crates/atuin-history/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-client = { path = "../atuin-client", version = "18.4.0-beta.5" }
18-
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
17+
atuin-client = { path = "../atuin-client", version = "18.4.0" }
18+
atuin-common = { path = "../atuin-common", version = "18.4.0" }
1919

2020
log = { workspace = true }
2121
time = { 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.4.0-beta.5" }
13+
atuin-common = { path = "../atuin-common", version = "18.4.0" }
1414

1515
tracing = "0.1"
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.4.0-beta.5" }
14-
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0-beta.5" }
13+
atuin-common = { path = "../atuin-common", version = "18.4.0" }
14+
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0" }
1515

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

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.4.0-beta.5" }
15-
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0-beta.5" }
14+
atuin-common = { path = "../atuin-common", version = "18.4.0" }
15+
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0" }
1616

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

Diff for: crates/atuin/Cargo.toml

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

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

5353
log = { workspace = true }
5454
env_logger = "0.11.5"

0 commit comments

Comments
 (0)