Skip to content

Commit

Permalink
Address review comment and add entry to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sciyoshi committed Apr 1, 2024
1 parent 744e04c commit 1c506ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- MSRV is bumped to `v1.74.0` from `v1.64.0`
- Make `ParseError` and `ValidationError` public
- `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.

## 0.11.0 (2023-07-18)

Expand Down
2 changes: 1 addition & 1 deletion rrule/src/core/rruleset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ impl RRuleSet {
)
}

/// Load an [`RRuleSet`] from a string.
/// Set the [`RRuleSet`] properties from a string. If a DTSTART is found, it will be used as the start datetime.
pub fn set_from_string(mut self, s: &str) -> Result<Self, RRuleError> {
let Grammar {
start,
Expand Down

0 comments on commit 1c506ab

Please sign in to comment.