-
Notifications
You must be signed in to change notification settings - Fork 562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prepare 0.4.22 #773
Prepare 0.4.22 #773
Conversation
@@ -201,7 +201,7 @@ impl Months { | |||
} | |||
|
|||
/// An error resulting from reading `<Month>` value with `FromStr`. | |||
#[derive(Clone, PartialEq)] | |||
#[derive(Clone, PartialEq, Eq)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+Copy
while you're at it? Or don't you want to make this promise in case of possible future changes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm just fixing up clippy stuff here, don't want to muddle it with unrelated changes.
Just set up a PR (#775) to update the changelog as it had gotten a little behind, aside from that looks good to me |
remove extra ]
I kinda want to get rid of change log in favor of release notes. |
Sounds good to me. Only thing I'd like to consider in relation to that is that I somewhat like the idea that the changelog is in the repository rather than as metadata - perhaps there is a way we can automatically generate the release notes - and we could have a folder with a .md file for each release? |
Just had a try of this to see if the content of a tag could be used but it doesn't seem to render as markdown, and I guess would have to be manually copied to the release creation form. We could still write them manually as markdown then copy that to the release creation form but that doesn't really meet the requirement of being less work than now. Should we remove the changelog for this release? |
I think we probably want to keep it around for historical purposes? Anyway, this release is done, let me just get it out. |
- Updated from version 0.4.19 to 0.4.22 - Update of rootfile - Update of metadata patch as more windows related entries in Cargo.toml to be excluded - Changelog ## 0.4.22 * Allow wasmbindgen to be optional on `wasm32-unknown-unknown` target [(#771)](chronotope/chrono#771) * Fix compile error for `x86_64-fortanix-unknown-sgx` [(#767)](chronotope/chrono#767) * Update `iana-time-zone` version to 1.44 [(#773)](chronotope/chrono#773) ## 0.4.21 * Fall back to UTC timezone in cases where no timezone is found [(#756)](chronotope/chrono#756) * Correctly detect timezone on Android [(#756)](chronotope/chrono#756) * Improve documentation for strftime `%Y` specifier [(#760)](chronotope/chrono#760) ## 0.4.20 * Add more formatting documentation and examples. * Add support for microseconds timestamps serde serialization/deserialization (#304) * Fix `DurationRound` is not TZ aware (#495) * Implement `DurationRound` for `NaiveDateTime` * Implement `std::iter::Sum` for `Duration` * Add `DateTime::from_local()` to construct from given local date and time (#572) * Add a function that calculates the number of years elapsed between now and a given `Date` or `DateTime` (#557) * Correct build for wasm32-unknown-emscripten target (#568) * Change `Local::now()` and `Utc::now()` documentation from "current date" to "current date and time" (#647) * Fix `duration_round` panic on rounding by `Duration::zero()` (#658) * Add optional rkyv support. * Add support for microseconds timestamps serde serialization for `NaiveDateTime`. * Add support for optional timestamps serde serialization for `NaiveDateTime`. * Fix build for wasm32-unknown-emscripten (@yu-re-ka #593) * Make `ParseErrorKind` public and available through `ParseError::kind()` (#588) * Implement `DoubleEndedIterator` for `NaiveDateDaysIterator` and `NaiveDateWeeksIterator` * Fix panicking when parsing a `DateTime` (@botahamec) * Add support for getting week bounds based on a specific `NaiveDate` and a `Weekday` (#666) * Remove libc dependency from Cargo.toml. * Add the `and_local_timezone` method to `NaiveDateTime` * Fix the behavior of `Duration::abs()` for negative durations with non-zero nanos * Add compatibility with rfc2822 comments (#733) * Make `js-sys` and `wasm-bindgen` enabled by default when target is `wasm32-unknown-unknown` for ease of API discovery * Add the `Months` struct and associated `Add` and `Sub` impls Tested-by: Adolf Belka <adolf.belka@ipfire.org> Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Bump the iana-time-zone dependency to 0.1.44, which breaks the dependency cycle on iOS/macOS and fixes some issues on RedHat-based Linux distributions.