From e04487b4b99366d4b692c6a282ab81f835f1e42a Mon Sep 17 00:00:00 2001 From: Fredrik Meringdal Date: Sat, 3 Aug 2024 17:29:19 +0200 Subject: [PATCH] Prepare v0.13 release --- CHANGELOG.md | 7 +++++++ rrule/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 83393bb..1b7271b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.13.0 (2024-08-03) + +- Fix to respect timezone when serializing `EXDATE` and `RDATE` +- Generic dependency updates +- Remove lifetime from iterator types +- Fix to render weekdays as valid rrule strings + ## 0.12.0 (2024-04-04) - Fix to ensure freq is capitalized in the string representation diff --git a/rrule/Cargo.toml b/rrule/Cargo.toml index 50d495f..289545a 100644 --- a/rrule/Cargo.toml +++ b/rrule/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rrule" description = "A pure Rust implementation of recurrence rules as defined in the iCalendar RFC." -version = "0.12.0" +version = "0.13.0" documentation = "https://docs.rs/rrule" repository = "https://github.com/fmeringdal/rust-rrule" authors = ["Fredrik Meringdal", "Ralph Bisschops "]