Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix release-plz changlog and release 0.8 #58

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 3 additions & 59 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
2 changes: 1 addition & 1 deletion ginepro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 4 additions & 0 deletions release-plz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[[package]]
name = "ginepro"
changelog_include = ["ginepro"]
changelog_path = "CHANGELOG.md"
Loading