From b4a36b832cdd4d464606b3ce3297de255e7706f0 Mon Sep 17 00:00:00 2001 From: Ethan Brierley Date: Wed, 10 Jul 2024 10:02:51 +0100 Subject: [PATCH] fix release-plz changlog and release 0.8 (#58) * fix: configure `release-plz` to use correct changelog * chore: release v0.8.0 --- CHANGELOG.md | 62 +++------------------------------------------- ginepro/Cargo.toml | 2 +- release-plz.toml | 4 +++ 3 files changed, 8 insertions(+), 60 deletions(-) create mode 100644 release-plz.toml diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b2441..1abf333 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,70 +1,14 @@ # Changelog - All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.8.0](https://github.com/TrueLayer/ginepro/compare/ginepro-v0.7.2...ginepro-v0.8.0) - 2024-07-10 + ### Breaking changes * Update to **tonic** 0.12 * Update to **prost** 0.13 - -## 0.7.2 (2024-04-22) - -### Fixed -* Added support for IPv6 addresses - -## 0.7.1 (2024-02-27) - -* Added support for **tonic** 0.11 - -## 0.6.0 (2023-04-18) - -* Added `connect_timeout` to `LoadBalancedChannelBuilder` -### Breaking changes - -* Updated to **tonic** 0.9 - -## 0.5.2 (2023-04-11) **YANKED** - -* Added `connect_timeout` to `LoadBalancedChannelBuilder` - -## 0.5.1 (2023-02-23) - -* Make `LoadBalancedChannelBuilder` `Send` - -## 0.5.0 (2022-08-05) - -* Trim dependencies - -### Breaking changes - -* Update to **tonic** 0.8 -* Update to **prost** 0.11 - -## 0.4.0 (2022-05-11) - -* Add `ServiceDefinition::try_from((String, u16))` implementation. - -### Breaking changes - -* Update to **tonic** 0.7 -* Update to **prost** 0.10 - -## 0.3.0 (2021-10-25) - -### Breaking changes - -* `LoadBalancedChannelBuilder::channel` is now async and fallible. -* `LoadBalancedChannel::builder` is now sync. -* `ServiceDefinition::hostname` and `ServiceDefinition::port` are now made private. -* Update to **tonic** 0.6 -* Update to **prost** 0.9 - -### Features - -* Add `ResolutionStrategy` to be able to resolve IPs once on startup [#2](https://github.com/TrueLayer/ginepro/issues/20) [d72678d](https://github.com/TrueLayer/ginepro/commit/d72678dc10342a83ecd0e66d10d9ac46469ba91b). -* Add `TryFrom` constructor for `ServiceDefinition` that verifies `hostname`. diff --git a/ginepro/Cargo.toml b/ginepro/Cargo.toml index 2bfaf85..a008278 100644 --- a/ginepro/Cargo.toml +++ b/ginepro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ginepro" -version = "0.7.2" +version = "0.8.0" edition = "2021" description = "A client-side gRPC channel implementation for tonic" repository = "https://github.com/TrueLayer/ginepro" diff --git a/release-plz.toml b/release-plz.toml new file mode 100644 index 0000000..5a85e91 --- /dev/null +++ b/release-plz.toml @@ -0,0 +1,4 @@ +[[package]] +name = "ginepro" +changelog_include = ["ginepro"] +changelog_path = "CHANGELOG.md"