diff --git a/CHANGELOG.md b/CHANGELOG.md index b84256c..83393bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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.12.0 (2024-xx-xx) +## 0.12.0 (2024-04-04) - Fix to ensure freq is capitalized in the string representation - MSRV is bumped to `v1.74.0` from `v1.64.0` @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `EXRULE`s are now correctly added as exrules on the `RRuleSet` when parsed from a string, instead of being incorrectly added as an rrule. - Add a `RRuleSet::set_from_string` method to support loading rules without DTSTART. This is useful particularly when working with the Google Calendar API. - Fix to include `RDATE`, `EXRULE` and `EXDATE` values if used in the `Display` implementation of `RRuleSet`. +- Fix #104 which had invalid occurrences for "every 2 months on the last Monday" ## 0.11.0 (2023-07-18) diff --git a/rrule/Cargo.toml b/rrule/Cargo.toml index 4fadacd..a475425 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.11.0" +version = "0.12.0" documentation = "https://docs.rs/rrule" repository = "https://github.com/fmeringdal/rust-rrule" authors = ["Fredrik Meringdal", "Ralph Bisschops "]