diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6c191..a5cd236 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.1.1](https://github.com/b1rger/carl/compare/v0.1.0...v0.1.1) (2023-12-05) + + +### Bug Fixes + +* **cargo:** update metadata in Cargo.toml ([42159e1](https://github.com/b1rger/carl/commit/42159e1ef57e9eee4db468da9e4d47e0ff7c3b72)) +* don't crash when dealing with weekly events ([5108474](https://github.com/b1rger/carl/commit/5108474b2fa6b198d32990433bc6285b0e344eaa)), closes [#46](https://github.com/b1rger/carl/issues/46) +* unnecessarily eager cloning of iterator items ([bdc334b](https://github.com/b1rger/carl/commit/bdc334b524b9fb573051d35574137bbc98670fd6)) + ## [0.1.0](https://github.com/b1rger/carl/compare/v0.0.4...v0.1.0) (2023-07-29) diff --git a/Cargo.lock b/Cargo.lock index fd10ffd..e4b8906 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -85,7 +85,7 @@ checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" [[package]] name = "carl" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anstyle", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 431040f..cded72c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ # SPDX-License-Identifier: MIT [package] name = "carl" -version = "0.1.0" +version = "0.1.1" authors = ["Birger Schacht "] edition = "2021" license = "MIT"