summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Meringdal <fmeringdal@hotmail.com>2020-11-06 12:30:05 +0100
committerFredrik Meringdal <fmeringdal@hotmail.com>2020-11-06 12:30:05 +0100
commit2b01efb41ca728e8c31dd7e450c38c9d1d3ce6c0 (patch)
tree38e93e2d3c4dc3bb29eae8deeb2a478e5f35571a
parent4ee1c74c245aa5c2fdee6cb13e470805fca7401f (diff)
downloadrust_rrule-2b01efb41ca728e8c31dd7e450c38c9d1d3ce6c0.zip
docs
-rw-r--r--Cargo.toml2
-rw-r--r--README.md5
2 files changed, 5 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 34a6ba2..17654ee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,7 @@
name = "rrule"
description = "A pure Rust implementation of recurrence rules as defined in the iCalendar RFC."
license = "MIT"
-version = "0.3.2"
+version = "0.3.3"
documentation = "https://docs.rs/rrule"
repository = "https://github.com/fmeringdal/rust_rrule"
authors = ["Fredrik Meringdal"]
diff --git a/README.md b/README.md
index 5238796..5636bb2 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,9 @@
This crate is not production ready yet. Dates and recurrence rules are quite complicated and
takes time to get right. Even though this crate is well tested (high code coverage), there are still
-tests missing regarding edge cases in stuff like DST, time zone and rfc_string parsing. Use at your own risk!
+tests missing regarding edge cases in stuff like DST, time zone and rfc_string parsing (contributions are very
+welcome!).
+Use at your own risk!
## Quick start
@@ -19,6 +21,7 @@ extern crate rrule;
use rrule::RRule;
+// RRule that starts 2012.02.01 and occurs daily for 3 days.
let mut rrule: RRule = "DTSTART:20120201T093000Z\nRRULE:FREQ=DAILY;COUNT=3".parse().unwrap();
// Get all recurrences of the rrule