Skip to content

Commit 8e0f4d5

Browse files
committed
julian v0.7.0 — std and time features
- 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`
1 parent e9fcdbd commit 8e0f4d5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/julian-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["calendar", "gregorian-calendar", "julian-calendar", "julian-day"]
1111
categories = ["command-line-utilities", "date-and-time"]
1212

1313
[dependencies]
14-
julian = { version = "0.6.0", path = "../julian" }
14+
julian = { version = "0.7.0", path = "../julian" }
1515
lexopt = "0.3.0"
1616
thiserror = "2.0.0"
1717

crates/julian/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v0.7.0 (in development)
2-
-----------------------
1+
v0.7.0 (2024-12-19)
2+
-------------------
33
- Increased MSRV to 1.81
44
- Added `std` feature for toggling `no_std` support
55
- Added `time` feature for enabling conversions to & from `time` types

crates/julian/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "julian"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition.workspace = true
55
rust-version.workspace = true
66
description = "Convert between Julian day numbers and Julian & Gregorian calendars"

0 commit comments

Comments
 (0)