diff --git a/CHANGELOG.md b/CHANGELOG.md index 681dfc5..d83cbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## [0.5.0](https://github.com/justinrubek/calendar-scheduler/compare/0.4.0..0.5.0) - 2023-01-10 +#### Features +- api request to create booking - ([10a3231](https://github.com/justinrubek/calendar-scheduler/commit/10a32318bb7c82136728cf5b7f9d1de01e33d768)) - [@justinrubek](https://github.com/justinrubek) +- support getting availability ranges that are shorter than the availability events - ([93499c2](https://github.com/justinrubek/calendar-scheduler/commit/93499c20104ba652ad5a17b6bce602a0bab9d3ea)) - [@justinrubek](https://github.com/justinrubek) +- create events - ([b7354d8](https://github.com/justinrubek/calendar-scheduler/commit/b7354d8432b34213886463a2e1a09947f679496b)) - [@justinrubek](https://github.com/justinrubek) +- cli can query availability for a calendar - ([ddc1c4f](https://github.com/justinrubek/calendar-scheduler/commit/ddc1c4f3e0b6e44dac9cae402f8054cad1345e9a)) - [@justinrubek](https://github.com/justinrubek) + +- - - + ## [0.4.0](https://github.com/justinrubek/calendar-scheduler/compare/0.3.0..0.4.0) - 2023-01-07 #### Documentation - comment clap commands - ([0860ae3](https://github.com/justinrubek/calendar-scheduler/commit/0860ae3e47b678dbc65e751b56d454531067899b)) - [@justinrubek](https://github.com/justinrubek) diff --git a/Cargo.lock b/Cargo.lock index 7b9b1d3..c52dc85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -132,7 +132,7 @@ checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c" [[package]] name = "caldav-utils" -version = "0.4.0" +version = "0.5.0" dependencies = [ "chrono", "chrono-tz 0.8.1", @@ -1420,7 +1420,7 @@ dependencies = [ [[package]] name = "scheduling-api" -version = "0.4.0" +version = "0.5.0" dependencies = [ "axum", "caldav-utils", diff --git a/crates/caldav-utils/Cargo.toml b/crates/caldav-utils/Cargo.toml index c88738c..8cc0303 100644 --- a/crates/caldav-utils/Cargo.toml +++ b/crates/caldav-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "caldav-utils" -version = "0.4.0" +version = "0.5.0" edition = "2021" license = "MIT" description = "functions for interacting with CalDAV servers" diff --git a/crates/scheduling-api/Cargo.toml b/crates/scheduling-api/Cargo.toml index 2462e35..ae178b2 100644 --- a/crates/scheduling-api/Cargo.toml +++ b/crates/scheduling-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scheduling-api" -version = "0.4.0" +version = "0.5.0" edition = "2021" [dependencies]