From 38ec4ae62a1907ea59c2a164292dc351b1ced4b3 Mon Sep 17 00:00:00 2001 From: Peltoche Date: Wed, 29 Nov 2023 11:18:59 +0100 Subject: [PATCH] Upgrade the package version --- Cargo.toml | 2 +- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) 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"] ```