Skip to content

Commit ff3255f

Browse files
committed
v0.3.32 release
1 parent d3dd5c9 commit ff3255f

File tree

6 files changed

+26
-12
lines changed

6 files changed

+26
-12
lines changed

.github/workflows/powerset.yaml

+3-6
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,6 @@ jobs:
106106
needs: check
107107
uses: ./.github/workflows/github-release.yaml
108108
with:
109-
prerelease: |
110-
${{
111-
contains(github.ref, 'alpha')
112-
|| contains(github.ref, 'beta')
113-
|| contains(github.ref, 'rc')
114-
}}
109+
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
110+
permissions:
111+
contents: write

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,28 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver
66

77
---
88

9+
## 0.3.32 [2024-02-01]
10+
11+
### Added
12+
13+
- Methods to replace the day of the year.
14+
- `Date::replace_ordinal`
15+
- `PrimitiveDateTime::replace_ordinal`
16+
- `OffsetDateTime::replace_ordinal`
17+
- Modules to treat an `OffsetDateTime` as a Unix timestamp with subsecond precision for serde.
18+
- `time::serde::timestamp::milliseconds`
19+
- `time::serde::timestamp::microseconds`
20+
- `time::serde::timestamp::nanoseconds`
21+
22+
### Changed
23+
24+
- `Duration::time_fn` is deprecated.
25+
926
## 0.3.31 [2023-12-19]
1027

1128
### Added
1229

13-
- `OFfsetDateTime::new_in_offset`
30+
- `OffsetDateTime::new_in_offset`
1431
- `OffsetDateTime::new_utc`
1532

1633
### Changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55

66
[workspace.dependencies]
77
time-core = { path = "time-core", version = "=0.1.2" }
8-
time-macros = { path = "time-macros", version = "=0.2.16" }
8+
time-macros = { path = "time-macros", version = "=0.2.17" }
99

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

time-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time-macros"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.67.0"

time/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time"
3-
version = "0.3.31"
3+
version = "0.3.32"
44
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.67.0"

0 commit comments

Comments
 (0)