Skip to content

Commit 45b9932

Browse files
committed
v0.3.43 release
1 parent 8cbf0db commit 45b9932

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver
66

77
---
88

9+
## 0.3.43 [2025-09-02]
10+
11+
### Added
12+
13+
- Support for `rand` 0.9
14+
15+
### Fixed
16+
17+
- In the `convert` module, any use of `per` with types that were not the same (such as
18+
`Nanosecond::per(Second)`) would not compile due to a bug. This has been fixed.
19+
920
## 0.3.42 [2025-08-31]
1021

1122
### Added

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ members = ["time", "time-core", "time-macros"]
44
resolver = "2"
55

66
[workspace.dependencies]
7-
time-core = { path = "time-core", version = "=0.1.5" }
8-
time-macros = { path = "time-macros", version = "=0.2.23" }
7+
time-core = { path = "time-core", version = "=0.1.6" }
8+
time-macros = { path = "time-macros", version = "=0.2.24" }
99

1010
criterion = { version = "0.5.1", default-features = false }
1111
deranged = { version = "0.5.2", features = ["powerfmt"] }

time-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time-core"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.81.0"

time-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time-macros"
3-
version = "0.2.23"
3+
version = "0.2.24"
44
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.81.0"

time/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time"
3-
version = "0.3.42"
3+
version = "0.3.43"
44
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.81.0"

0 commit comments

Comments
 (0)