From facc517b5b341b6951697902defec0396045e5bd Mon Sep 17 00:00:00 2001 From: Ethan Brierley Date: Mon, 4 Mar 2024 10:59:35 +0000 Subject: [PATCH] Minor (breaking) release :rocket: --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7371651..3598dd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.3.0] - 2024-03-04 - [Breaking] Implement `RetryPolicy` for `ExponentialBackoffTimed`, which requires a modification to the `should_retry` method of `RetryPolicy` in order to pass the time at which the task (original request) was started. diff --git a/Cargo.toml b/Cargo.toml index e4dfded..12dc910 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "retry-policies" -version = "0.2.1" +version = "0.3.0" authors = ["Luca Palmieri "] edition = "2018" description = "A collection of plug-and-play retry policies for Rust projects."