From 5b911a179b0b2b03bc69adb68cd7d74cd91eea9e Mon Sep 17 00:00:00 2001 From: Cormac Relf Date: Tue, 5 Oct 2021 21:02:51 +1100 Subject: [PATCH] (cargo-release) version 0.2.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27cec0b..7939bab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,26 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.2.0] - 2021-10-05 + +### Documentation + +- Move sorting code to a new module +- Reorder impls on L1 Date and Edtf +- Remove as_matcher example from README + +### Features + +- Add optional serde interop +- Edtf::sort_order(_start, _end) +- Some PartialOrd/Ord implementations +- New methods to access date components that may be absent or `XX` (unspecified) as `Option` + +### Refactor + +- Merge IntervalFromOpen/IntervalFromUnknown (also To) +- Remove entire as_matcher API + ## [0.1.1] - 2021-09-10 ### Features diff --git a/Cargo.toml b/Cargo.toml index 043b1d3..6aa830e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "edtf" -version = "0.1.2-alpha.0" +version = "0.2.0" authors = ["Cormac Relf "] edition = "2018" description = "EDTF parser" diff --git a/README.md b/README.md index cd277c6..9bab0a8 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ module level documentation. ```toml [dependencies] -edtf = "0.1.1" +edtf = "0.2.0" ``` ### Features: