diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ae689c..127436e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.3.0](https://github.com/jhorstmann/packedtime-rs/tree/0.3.0) (2023-11-01) + + - Support calculating the difference between dates in units of years or months + - More reliable auto-vectorization due to less branches + ## [0.2.6](https://github.com/jhorstmann/packedtime-rs/tree/0.2.6) (2023-07-03) - Fixed bug with negative timezone offsets in `PackedTimestamp` diff --git a/Cargo.lock b/Cargo.lock index 6cc6745..a4f791c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -358,7 +358,7 @@ checksum = "a170cebd8021a008ea92e4db85a72f80b35df514ec664b296fdcbb654eac0b2c" [[package]] name = "packedtime-rs" -version = "0.2.6" +version = "0.3.0" dependencies = [ "chrono", "chronoutil", diff --git a/Cargo.toml b/Cargo.toml index de9084a..284f232 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "packedtime-rs" description = "Utilities for efficiently storing, parsing, formatting and truncating timestamps" authors = ["Jörn Horstmann "] -version = "0.2.6" +version = "0.3.0" edition = "2021" repository = "https://github.com/jhorstmann/packedtime-rs"