diff --git a/Cargo.toml b/Cargo.toml index 12f53fd..d472d2d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license-file = "./LICENSE" name = "ical" readme = "./README.md" repository = "https://github.com/Peltoche/ical-rs" -version = "0.8.0" +version = "0.9.0" [badges] diff --git a/README.md b/README.md index 7f9e469..dd1a048 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Put this in your `Cargo.toml`: ```toml [dependencies] -ical = "0.8" +ical = "0.9" ``` @@ -49,7 +49,7 @@ Each component can contains properties (ie: `Property`) or sub-components. Cargo.toml: ```toml [dependencies.ical] -version = "0.8" +version = "0.9" default-features = false features = ["ical", "vcard"] ``` @@ -112,7 +112,7 @@ It work for both the vCard and iCal formats. Cargo.toml: ```toml [dependencies.ical] -version = "0.8" +version = "0.9" default-features = false features = ["property"] ``` @@ -155,7 +155,7 @@ It work for both the vCard and iCal formats. Cargo.toml: ```toml [dependencies.ical] -version = "0.8" +version = "0.9" default-features = false features = ["line"] ``` @@ -202,7 +202,7 @@ formalities. Cargo.toml: ```toml [dependencies.ical] -version = "0.8" +version = "0.9" default-features = false features = ["ical", "vcard", "generator"] ```