Skip to content

Commit

Permalink
chore(release): prepare for release v18.3.0 (#2105)
Browse files Browse the repository at this point in the history
* chore(release): prepare for release v18.3.0

* build full release

* Revert "build full release"

This reverts commit 65e7718.
  • Loading branch information
ellie committed Jun 10, 2024
1 parent c0d2c96 commit 9be49e4
Show file tree
Hide file tree
Showing 13 changed files with 250 additions and 262 deletions.
441 changes: 214 additions & 227 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Cristian Le <[email protected]>
cyqsimon <[email protected]>
Daniel <[email protected]>
Daniel Carosone <[email protected]>
David <[email protected]>
David <[email protected]>
David Chocholatý <[email protected]>
David Legrand <[email protected]>
Expand Down
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.3.0-prerelease.1"
version = "18.3.0"
authors = ["Ellie Huxtable <[email protected]>"]
rust-version = "1.77"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ body = """
{%- for commit in commits %}
{%- if commit.scope -%}
{% else -%}
- *(No Category)* {{ commit.message | upper_first }}
- {{ commit.message | upper_first }}
{% if commit.breaking -%}
{% raw %} {% endraw %}- **BREAKING**: {{commit.breaking_description}}
{% endif -%}
Expand Down Expand Up @@ -91,7 +91,7 @@ tag_pattern = "v[0-9].*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
ignore_tags = ""
ignore_tags = ".*prerelease.*"
# sort the tags topologically
topo_order = false
# sort the commits inside sections by oldest/newest order
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.3.0-prerelease.1" }
atuin-common = { path = "../atuin-common", version = "18.3.0" }

log = { workspace = true }
base64 = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions crates/atuin-daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atuin-daemon"
edition = "2021"
version = "0.1.0"
version = "0.2.0"
authors.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -12,9 +12,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.3.0-prerelease.1" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.2.0" }
atuin-history = { path = "../atuin-history", version = "0.1.0" }
atuin-client = { path = "../atuin-client", version = "18.3.0" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.3.0" }
atuin-history = { path = "../atuin-history", version = "0.2.0" }

time = { workspace = true }
uuid = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/atuin-dotfiles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "atuin-dotfiles"
description = "The dotfiles crate for Atuin"
edition = "2021"
version = "0.2.0" # intentionally not the same as the rest
version = "0.3.0" # intentionally not the same as the rest

authors.workspace = true
rust-version.workspace = true
Expand All @@ -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.3.0-prerelease.1" }
atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1" }
atuin-common = { path = "../atuin-common", version = "18.3.0" }
atuin-client = { path = "../atuin-client", version = "18.3.0" }

eyre = { workspace = true }
tokio = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions crates/atuin-history/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atuin-history"
edition = "2021"
version = "0.1.0"
version = "0.2.0"

authors.workspace = true
rust-version.workspace = true
Expand All @@ -13,8 +13,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.3.0-prerelease.1" }
atuin-common = { path = "../atuin-common", version = "18.3.0-prerelease.1" }
atuin-client = { path = "../atuin-client", version = "18.3.0" }
atuin-common = { path = "../atuin-common", version = "18.3.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.3.0-prerelease.1" }
atuin-common = { path = "../atuin-common", version = "18.3.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.3.0-prerelease.1" }
atuin-server-database = { path = "../atuin-server-database", version = "18.3.0-prerelease.1" }
atuin-common = { path = "../atuin-common", version = "18.3.0" }
atuin-server-database = { path = "../atuin-server-database", version = "18.3.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.3.0-prerelease.1" }
atuin-server-database = { path = "../atuin-server-database", version = "18.3.0-prerelease.1" }
atuin-common = { path = "../atuin-common", version = "18.3.0" }
atuin-server-database = { path = "../atuin-server-database", version = "18.3.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 = ["cli-clipboard"]
check-update = ["atuin-client/check-update"]

[dependencies]
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.3.0-prerelease.1", optional = true }
atuin-server = { path = "../atuin-server", version = "18.3.0-prerelease.1", optional = true }
atuin-client = { path = "../atuin-client", version = "18.3.0-prerelease.1", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.3.0-prerelease.1" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.2.0" }
atuin-history = { path = "../atuin-history", version = "0.1.0" }
atuin-daemon = { path = "../atuin-daemon", version = "0.1.0" }
atuin-server-postgres = { path = "../atuin-server-postgres", version = "18.3.0", optional = true }
atuin-server = { path = "../atuin-server", version = "18.3.0", optional = true }
atuin-client = { path = "../atuin-client", version = "18.3.0", optional = true, default-features = false }
atuin-common = { path = "../atuin-common", version = "18.3.0" }
atuin-dotfiles = { path = "../atuin-dotfiles", version = "0.3.0" }
atuin-history = { path = "../atuin-history", version = "0.2.0" }
atuin-daemon = { path = "../atuin-daemon", version = "0.2.0" }

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

0 comments on commit 9be49e4

Please sign in to comment.