Releases: jwodder/julian-rs
Releases · jwodder/julian-rs
julian v0.7.1 — Improved `Display`
- The
Displayimpls forMonthandWeekdaynow support width, fill, alignment, and precision flags
julian v0.7.0 — `std` and `time` features
- Increased MSRV to 1.81
- Added
stdfeature for togglingno_stdsupport - Added
timefeature for enabling conversions to & fromtimetypes - Breaking: The
impl<T: chrono::Datelike> From<T> for Dateconversion enabled by thechronofeature has been changed to justimpl From<chrono::NaiveDate> for Date
julian v0.6.0 — Split CLI into separate package
- Increased MSRV to 1.67
- Breaking: Split off CLI into a separate
julian-clicrate
julian-cli v0.6.2 — Bump versions
- Increased MSRV to 1.81
- Increase
juliandependency to0.7.0
julian-cli v0.6.1 — Fix program name
- Fix name of installed executable
julian-cli v0.6.0 — Initial release as separate crate (YANKED)
This version was yanked on 2024-12-18 because the name of the installed executable was incorrect.
v0.5.0 — Const-ness and a slight reorg
- Breaking: Moved error types to
errorsmodule - Breaking: Moved iterator types to
itermodule - Most non-trait methods are now
const
v0.4.0 — More traits for iterators
- Increased MSRV to 1.65
Days,Dates,Later,Earlier,AndLater, andAndEarliernow implementClone,Debug,Eq, andPartialEq
v0.3.1 — Lowered MSRV to 1.62
Version 0.3.1
v0.3.0 — Command-line interface
- Added a
julianbinary for converting Julian day numbers to & from calendar datesjuliannow has aclifeature enabled by default that adds the dependencies needed by the binary. Library users are advised to disable default features so as not to pull these in.