From da2e58fbb17aa05510df2480f7e1d47e21e74c73 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Sun, 10 Dec 2023 13:00:59 +0000 Subject: chore(release): prepare for release v17.1.0 (#1432) --- CHANGELOG.md | 3 ++- CONTRIBUTORS | 5 +++++ Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- atuin-client/Cargo.toml | 2 +- atuin-server-database/Cargo.toml | 2 +- atuin-server-postgres/Cargo.toml | 4 ++-- atuin-server/Cargo.toml | 4 ++-- atuin/Cargo.toml | 8 ++++---- 9 files changed, 24 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a659818a..aa53296b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [unreleased] +## [17.1.0] - 2023-12-10 ### Bug Fixes @@ -40,6 +40,7 @@ All notable changes to this project will be documented in this file. - Run dependabot weekly, not daily ([#1423](https://github.com/atuinsh/atuin/issues/1423)) - Don't group deps ([#1424](https://github.com/atuinsh/atuin/issues/1424)) - Add contributor image to README ([#1430](https://github.com/atuinsh/atuin/issues/1430)) +- Setup git cliff ([#1431](https://github.com/atuinsh/atuin/issues/1431)) ## [17.0.1] - 2023-10-28 diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 9b9d99538..0c4d9a1e7 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -20,8 +20,10 @@ CosmicHorror cyqsimon <28627918+cyqsimon@users.noreply.github.com> Daniel Daniel Carosone +Dennis Trautwein dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Dieter Eickstaedt +Dom Rodriguez DS/Charlie <82801887+ds-cbo@users.noreply.github.com> Ed Ive Edward Loveall @@ -33,6 +35,7 @@ Erwin Kroon <123574+ekroon@users.noreply.github.com> Ethan Brierley Evan McBeth <64177332+AtomicRobotMan0101@users.noreply.github.com> Evan Purkhiser +Felix Yan Frank Hamand frukto Gokul @@ -84,6 +87,7 @@ mb6ockatf <104227451+mb6ockatf@users.noreply.github.com> mentalisttraceur Michael Bianco Michael Mior +Michael Vincent <377567+Vynce@users.noreply.github.com> mmx morguldir mundry <1453314+mundry@users.noreply.github.com> @@ -140,3 +144,4 @@ YummyOreo Yuvi Panda ZhiHong Li éclairevoyant <848000+eclairevoyant@users.noreply.github.com> +镜面王子 <153555712@qq.com> diff --git a/Cargo.lock b/Cargo.lock index 7b0aa5c33..d08b16570 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -153,7 +153,7 @@ dependencies = [ [[package]] name = "atuin" -version = "17.0.1" +version = "17.1.0" dependencies = [ "async-trait", "atuin-client", @@ -194,7 +194,7 @@ dependencies = [ [[package]] name = "atuin-client" -version = "17.0.1" +version = "17.1.0" dependencies = [ "async-trait", "atuin-common", @@ -240,7 +240,7 @@ dependencies = [ [[package]] name = "atuin-common" -version = "17.0.1" +version = "17.1.0" dependencies = [ "eyre", "pretty_assertions", @@ -254,7 +254,7 @@ dependencies = [ [[package]] name = "atuin-server" -version = "17.0.1" +version = "17.1.0" dependencies = [ "argon2", "async-trait", @@ -283,7 +283,7 @@ dependencies = [ [[package]] name = "atuin-server-database" -version = "17.0.1" +version = "17.1.0" dependencies = [ "async-trait", "atuin-common", @@ -296,7 +296,7 @@ dependencies = [ [[package]] name = "atuin-server-postgres" -version = "17.0.1" +version = "17.1.0" dependencies = [ "async-trait", "atuin-common", diff --git a/Cargo.toml b/Cargo.toml index adb5b46f3..2df36cfeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ members = [ [workspace.package] name = "atuin" -version = "17.0.1" +version = "17.1.0" authors = ["Ellie Huxtable "] rust-version = "1.67" license = "MIT" diff --git a/atuin-client/Cargo.toml b/atuin-client/Cargo.toml index eae23938d..951b3274b 100644 --- a/atuin-client/Cargo.toml +++ b/atuin-client/Cargo.toml @@ -17,7 +17,7 @@ default = ["sync"] sync = ["urlencoding", "reqwest", "sha2", "hex"] [dependencies] -atuin-common = { path = "../atuin-common", version = "17.0.1" } +atuin-common = { path = "../atuin-common", version = "17.1.0" } log = { workspace = true } base64 = { workspace = true } diff --git a/atuin-server-database/Cargo.toml b/atuin-server-database/Cargo.toml index 56d8f02b9..d1a1f1049 100644 --- a/atuin-server-database/Cargo.toml +++ b/atuin-server-database/Cargo.toml @@ -10,7 +10,7 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "17.0.1" } +atuin-common = { path = "../atuin-common", version = "17.1.0" } tracing = "0.1" time = { workspace = true } diff --git a/atuin-server-postgres/Cargo.toml b/atuin-server-postgres/Cargo.toml index 88abb5230..7b0cfbadd 100644 --- a/atuin-server-postgres/Cargo.toml +++ b/atuin-server-postgres/Cargo.toml @@ -10,8 +10,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "17.0.1" } -atuin-server-database = { path = "../atuin-server-database", version = "17.0.1" } +atuin-common = { path = "../atuin-common", version = "17.1.0" } +atuin-server-database = { path = "../atuin-server-database", version = "17.1.0" } tracing = "0.1" time = { workspace = true } diff --git a/atuin-server/Cargo.toml b/atuin-server/Cargo.toml index e5390b00b..445dfcb7c 100644 --- a/atuin-server/Cargo.toml +++ b/atuin-server/Cargo.toml @@ -11,8 +11,8 @@ homepage = { workspace = true } repository = { workspace = true } [dependencies] -atuin-common = { path = "../atuin-common", version = "17.0.1" } -atuin-server-database = { path = "../atuin-server-database", version = "17.0.1" } +atuin-common = { path = "../atuin-common", version = "17.1.0" } +atuin-server-database = { path = "../atuin-server-database", version = "17.1.0" } tracing = "0.1" time = { workspace = true } diff --git a/atuin/Cargo.toml b/atuin/Cargo.toml index 256457ff7..0b3c037d7 100644 --- a/atuin/Cargo.toml +++ b/atuin/Cargo.toml @@ -39,10 +39,10 @@ sync = ["atuin-client/sync"] server = ["atuin-server", "atuin-server-postgres", "tracing-subscriber"] [dependencies] -atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.0.1", optional = true } -atuin-server = { path = "../atuin-server", version = "17.0.1", optional = true } -atuin-client = { path = "../atuin-client", version = "17.0.1", optional = true, default-features = false } -atuin-common = { path = "../atuin-common", version = "17.0.1" } +atuin-server-postgres = { path = "../atuin-server-postgres", version = "17.1.0", optional = true } +atuin-server = { path = "../atuin-server", version = "17.1.0", optional = true } +atuin-client = { path = "../atuin-client", version = "17.1.0", optional = true, default-features = false } +atuin-common = { path = "../atuin-common", version = "17.1.0" } log = { workspace = true } env_logger = "0.10.0" -- cgit v1.2.3