8000 Releases · jwodder/julian-rs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Releases: jwodder/julian-rs

julian v0.7.0 — `std` and `time` features

19 Dec 16:39
julian/v0.7.0
Compare
Choose a tag to compare
  • Increased MSRV to 1.81
  • Added std feature for toggling no_std support
  • Added time feature for enabling conversions to & from time types
  • Breaking: The impl<T: chrono::Datelike> From<T> for Date conversion enabled by the chrono feature has been changed to just impl From<chrono::NaiveDate> for Date

julian v0.6.0 — Split CLI into separate package

19 Dec 00:27
julian/v0.6.0
Compare
Choose a tag to compare
  • Increased MSRV to 1.67
  • Breaking: Split off CLI into a separate julian-cli crate

julian-cli v0.6.2 — Bump versions

19 Dec 16:42
julian-cli/v0.6.2
Compare
Choose a tag to compare
  • Increased MSRV to 1.81
  • Increase julian dependency to 0.7.0

julian-cli v0.6.1 — Fix program name

19 Dec 03:40
julian-cli/v0.6.1
Compare
Choose a tag to compare
  • Fix name of installed executable

julian-cli v0.6.0 — Initial release as separate crate (YANKED)

19 Dec 00:29
julian-cli/v0.6.0
Compare
Choose a tag to compare

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

22 Dec 16:57
v0.5.0
Compare
Choose a tag to compare
  • Breaking: Moved error types to errors module
  • Breaking: Moved iterator types to iter module
  • Most non-trait methods are now const

v0.4.0 — More traits for iterators

22 Nov 23:19
v0.4.0
Compare
Choose a tag to compare
  • Increased MSRV to 1.65
  • Days, Dates, Later, Earlier, AndLater, and AndEarlier now implement Clone, Debug, Eq, and PartialEq

v0.3.1 — Lowered MSRV to 1.62

15 May 11:49
v0.3.1
Compare
Choose a tag to compare

v0.3.0 — Command-line interface

14 May 22:56
v0.3.0
Compare
Choose a tag to compare
  • Added a julian binary for converting Julian day numbers to & from calendar dates
    • julian now has a cli feature 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.

v0.2.0

13 May 22:47
v0.2.0
Compare
Choose a tag to compare
  • Added a chrono feature for enabling conversions to & from chrono types
  • Gave MonthShape a calendar() method for obtaining the associated Calendar
  • Gave MonthShape nth_date() and dates() methods for obtaining Date objects belonging to the month
  • New Date methods:
    • pred() — returns the previous date
    • succ() — returns the next date
    • later() — returns an iterator over all later dates
    • earlier() — returns an iterator over all earlier dates
    • and_later() — returns an iterator that yields the receiver and all later dates
    • and_earlier() — returns an iterator that yields the receiver and all earlier dates
  • Added a Weekday enum and a Date::weekday() method
0