Skip to content

Commit

Permalink
v0.3.32 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Feb 1, 2024
1 parent d3dd5c9 commit ff3255f
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 12 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/powerset.yaml
Expand Up @@ -106,9 +106,6 @@ jobs:
needs: check
uses: ./.github/workflows/github-release.yaml
with:
prerelease: |
${{
contains(github.ref, 'alpha')
|| contains(github.ref, 'beta')
|| contains(github.ref, 'rc')
}}
prerelease: ${{ contains(github.ref, 'alpha') || contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
permissions:
contents: write
19 changes: 18 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,11 +6,28 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver

---

## 0.3.32 [2024-02-01]

### Added

- Methods to replace the day of the year.
- `Date::replace_ordinal`
- `PrimitiveDateTime::replace_ordinal`
- `OffsetDateTime::replace_ordinal`
- Modules to treat an `OffsetDateTime` as a Unix timestamp with subsecond precision for serde.
- `time::serde::timestamp::milliseconds`
- `time::serde::timestamp::microseconds`
- `time::serde::timestamp::nanoseconds`

### Changed

- `Duration::time_fn` is deprecated.

## 0.3.31 [2023-12-19]

### Added

- `OFfsetDateTime::new_in_offset`
- `OffsetDateTime::new_in_offset`
- `OffsetDateTime::new_utc`

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -5,7 +5,7 @@ resolver = "2"

[workspace.dependencies]
time-core = { path = "time-core", version = "=0.1.2" }
time-macros = { path = "time-macros", version = "=0.2.16" }
time-macros = { path = "time-macros", version = "=0.2.17" }

criterion = { version = "0.5.1", default-features = false }
deranged = { version = "0.3.9", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion time-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "time-macros"
version = "0.2.16"
version = "0.2.17"
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
edition = "2021"
rust-version = "1.67.0"
Expand Down
2 changes: 1 addition & 1 deletion time/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "time"
version = "0.3.31"
version = "0.3.32"
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
edition = "2021"
rust-version = "1.67.0"
Expand Down

0 comments on commit ff3255f

Please sign in to comment.