Skip to content

Commit 9be49e4

Browse files
authored
chore(release): prepare for release v18.3.0 (#2105)
* chore(release): prepare for release v18.3.0 * build full release * Revert "build full release" This reverts commit 65e7718.
1 parent c0d2c96 commit 9be49e4

File tree

13 files changed

+250
-262
lines changed

13 files changed

+250
-262
lines changed

Diff for: CHANGELOG.md

+214-227
Large diffs are not rendered by default.

Diff for: CONTRIBUTORS

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Cristian Le <[email protected]>
2828
2929
3030
Daniel Carosone <[email protected]>
31+
3132
3233
David Chocholatý <[email protected]>
3334
David Legrand <[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.3.0-prerelease.1"
8+
version = "18.3.0"
99
authors = ["Ellie Huxtable <[email protected]>"]
1010
rust-version = "1.77"
1111
license = "MIT"

Diff for: cliff.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ body = """
3333
{%- for commit in commits %}
3434
{%- if commit.scope -%}
3535
{% else -%}
36-
- *(No Category)* {{ commit.message | upper_first }}
36+
- {{ commit.message | upper_first }}
3737
{% if commit.breaking -%}
3838
{% raw %} {% endraw %}- **BREAKING**: {{commit.breaking_description}}
3939
{% endif -%}
@@ -91,7 +91,7 @@ tag_pattern = "v[0-9].*"
9191
# regex for skipping tags
9292
skip_tags = "v0.1.0-beta.1"
9393
# regex for ignoring tags
94-
ignore_tags = ""
94+
ignore_tags = ".*prerelease.*"
9595
# sort the tags topologically
9696
topo_order = false
9797
# sort the commits inside sections by oldest/newest order

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.3.0-prerelease.1" }
22+
atuin-common = { path = "../atuin-common", version = "18.3.0" }
2323

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

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "atuin-daemon"
33
edition = "2021"
4-
version = "0.1.0"
4+
version = "0.2.0"
55
authors.workspace = true
66
rust-version.workspace = true
77
license.workspace = true
@@ -12,9 +12,9 @@ readme.workspace = true
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1" }
16-
atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.2.0" }
17-
atuin-history = { path = "../atuin-history", version = "0.1.0" }
15+
atuin-client = { path = "../atuin-client", version = "18.3.0" }
16+
atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.3.0" }
17+
atuin-history = { path = "../atuin-history", version = "0.2.0" }
1818

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "atuin-dotfiles"
33
description = "The dotfiles crate for Atuin"
44
edition = "2021"
5-
version = "0.2.0" # intentionally not the same as the rest
5+
version = "0.3.0" # intentionally not the same as the rest
66

77
authors.workspace = true
88
rust-version.workspace = true
@@ -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.3.0-prerelease.1" }
18-
atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1" }
17+
atuin-common = { path = "../atuin-common", version = "18.3.0" }
18+
atuin-client = { path = "../atuin-client", version = "18.3.0" }
1919

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

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "atuin-history"
33
edition = "2021"
4-
version = "0.1.0"
4+
version = "0.2.0"
55

66
authors.workspace = true
77
rust-version.workspace = true
@@ -13,8 +13,8 @@ readme.workspace = true
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1" }
17-
atuin-common = { path = "../atuin-common", version = "18.3.0-prerelease.1" }
16+
atuin-client = { path = "../atuin-client", version = "18.3.0" }
17+
atuin-common = { path = "../atuin-common", version = "18.3.0" }
1818

1919
log = { workspace = true }
2020
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.3.0-prerelease.1" }
13+
atuin-common = { path = "../atuin-common", version = "18.3.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.3.0-prerelease.1" }
14-
atuin-server-database = { path = "../atuin-server-database", version = "18.3.0-prerelease.1" }
13+
atuin-common = { path = "../atuin-common", version = "18.3.0" }
14+
atuin-server-database = { path = "../atuin-server-database", version = "18.3.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.3.0-prerelease.1" }
15-
atuin-server-database = { path = "../atuin-server-database", version = "18.3.0-prerelease.1" }
14+
atuin-common = { path = "../atuin-common", version = "18.3.0" }
15+
atuin-server-database = { path = "../atuin-server-database", version = "18.3.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 = ["cli-clipboard"]
4242
check-update = ["atuin-client/check-update"]
4343

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

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

0 commit comments

Comments
 (0)