Skip to content

Commit

Permalink
chore(release): prepare for release v18.4.0 (#2495)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellie authored Dec 27, 2024
1 parent aa5c7e7 commit dc7c26a
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 33 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ All notable changes to this project will be documented in this file.
- Ultracompact Mode (search-only) ([#2357](https://github.com/atuinsh/atuin/issues/2357))
- Right Arrow to modify selected command ([#2453](https://github.com/atuinsh/atuin/issues/2453))
- Provide additional clarity around key management ([#2467](https://github.com/atuinsh/atuin/issues/2467))
- Add `atuin wrapped` ([#2493](https://github.com/atuinsh/atuin/issues/2493))


### Miscellaneous Tasks
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ Dieter Eickstaedt <eickstaedt@deicon.de>
Dom Rodriguez <shymega@users.noreply.github.com>
Dongxu Wang <dongxu@apache.org>
DS/Charlie <82801887+ds-cbo@users.noreply.github.com>
éclairevoyant <848000+eclairevoyant@users.noreply.github.com>
Ed Ive <ed.ivve@gmail.com>
Edward Loveall <edward@edwardloveall.com>
Ellie Huxtable <ellie@atuin.sh>
Expand Down Expand Up @@ -77,6 +78,7 @@ Jamie Quigley <jamie@quigley.xyz>
Jan Larres <jan@majutsushi.net>
Jannik <32144358+mozzieongit@users.noreply.github.com>
Jannik <jannik.peters@posteo.de>
János Illés <ijanos@gmail.com>
Jax Young <jaxvanyang@gmail.com>
jean-santos <ewqjean@gmail.com>
jean-santos <jeanpnsantos@gmail.com>
Expand All @@ -93,7 +95,6 @@ Josef Friedrich <josef@friedrich.rocks>
JT <547158+jntrnr@users.noreply.github.com>
Julien P <julien@caffeine.lu>
Justin Su <injustsu@gmail.com>
János Illés <ijanos@gmail.com>
Kjetil Jørgensen <kjetijor+github@gmail.com>
Klas Mellbourn <klas@mellbourn.net>
Koichi Murase <myoga.murase@gmail.com>
Expand Down Expand Up @@ -142,8 +143,8 @@ Nico Kokonas <nico@nicomee.com>
Niklas Hambüchen <mail@nh2.me>
noyez <noyez@ithryn.net>
Omer Katz <omer.drow@gmail.com>
onkelT2 <126604057+onkelT2@users.noreply.github.com>
Onè <43485962+c-git@users.noreply.github.com>
onkelT2 <126604057+onkelT2@users.noreply.github.com>
Orhun Parmaksız <orhunparmaksiz@gmail.com>
P T Weir <phil.weir@flaxandteal.co.uk>
Patrick <pmarschik@users.noreply.github.com>
Expand Down Expand Up @@ -208,6 +209,5 @@ YummyOreo <bobgim20@gmail.com>
Yuvi Panda <yuvipanda@gmail.com>
Zhanibek Adilbekov <zhanibek.adilbekov@proton.me>
ZhiHong Li <joker_lizhih@163.com>
éclairevoyant <848000+eclairevoyant@users.noreply.github.com>
依云 <lilydjwg@gmail.com>
镜面王子 <153555712@qq.com>
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"
exclude = ["ui/backend"]

[workspace.package]
version = "18.4.0-beta.5"
version = "18.4.0"
authors = ["Ellie Huxtable <ellie@atuin.sh>"]
rust-version = "1.82"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/atuin-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ daemon = []
check-update = []

[dependencies]
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
atuin-common = { path = "../atuin-common", version = "18.4.0" }

log = { workspace = true }
base64 = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/atuin-daemon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0-beta.5" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0-beta.5" }
atuin-history = { path = "../atuin-history", version = "18.4.0-beta.5" }
atuin-client = { path = "../atuin-client", version = "18.4.0" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0" }
atuin-history = { path = "../atuin-history", version = "18.4.0" }

time = { workspace = true }
uuid = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/atuin-dotfiles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0-beta.5" }
atuin-client = { path = "../atuin-client", version = "18.4.0-beta.5" }
atuin-common = { path = "../atuin-common", version = "18.4.0" }
atuin-client = { path = "../atuin-client", version = "18.4.0" }

eyre = { workspace = true }
tokio = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/atuin-history/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0-beta.5" }
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
atuin-client = { path = "../atuin-client", version = "18.4.0" }
atuin-common = { path = "../atuin-common", version = "18.4.0" }

log = { workspace = true }
time = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/atuin-server-database/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
atuin-common = { path = "../atuin-common", version = "18.4.0" }

tracing = "0.1"
time = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/atuin-server-postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0-beta.5" }
atuin-common = { path = "../atuin-common", version = "18.4.0" }
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0" }

eyre = { workspace = true }
tracing = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/atuin-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ homepage = { workspace = true }
repository = { workspace = true }

[dependencies]
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0-beta.5" }
atuin-common = { path = "../atuin-common", version = "18.4.0" }
atuin-server-database = { path = "../atuin-server-database", version = "18.4.0" }

tracing = "0.1"
time = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions crates/atuin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ clipboard = ["arboard"]
check-update = ["atuin-client/check-update"]

[dependencies]
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.4.0-beta.5", optional = true }
atuin-server = { path = "../atuin-server", version = "18.4.0-beta.5", optional = true }
atuin-client = { path = "../atuin-client", version = "18.4.0-beta.5", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.4.0-beta.5" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0-beta.5" }
atuin-history = { path = "../atuin-history", version = "18.4.0-beta.5" }
atuin-daemon = { path = "../atuin-daemon", version = "18.4.0-beta.5", optional = true, default-features = false }
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.4.0", optional = true }
atuin-server = { path = "../atuin-server", version = "18.4.0", optional = true }
atuin-client = { path = "../atuin-client", version = "18.4.0", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.4.0" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "18.4.0" }
atuin-history = { path = "../atuin-history", version = "18.4.0" }
atuin-daemon = { path = "../atuin-daemon", version = "18.4.0", optional = true, default-features = false }

log = { workspace = true }
env_logger = "0.11.5"
Expand Down

0 comments on commit dc7c26a

Please sign in to comment.