Skip to content

Commit

Permalink
v0.3.15 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Oct 4, 2022
1 parent 6017732 commit a71691d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/powerset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,14 +119,9 @@ jobs:
uses: actions/checkout@v3

- name: Create release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ncipollo/release-action@v1
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: See the [changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md) for details.
draft: false
prerelease: |
${{
contains(github.ref, 'alpha')
Expand Down
21 changes: 18 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver

---

## 0.3.15 [2022-10-03]

### Changed

- Better gating for `tm_gmtoff` extension. This should eliminate build failures on some untested
platforms.
- `Debug` output for types are now human-readable. While this should not be relied upon, it is
currently the same as the output with `Display`.
- Eliminate overflows in the constructors for `Duration. When there is an overflow, the methods now
panic. This was previously only the case in debug mode.
- Panic if `NaN` is passed to `Duration::from_secs_f32` or `Duration::from_secs_f64`.

### Fixed

- Fix error when deserializing data types from bytes. This affects formats such as JSON.
- Eliminate a panic in an edge case when converting `OffsetDateTime` to another `UtcOffset`. This
occurred due to an old assumption in code that was no longer the case.

## 0.3.14 [2022-08-24]

### Changed
Expand Down Expand Up @@ -48,9 +66,6 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver
- [#481]: `Time` subtracted from `Time` can panic. This was caused by a bug that has always existed,
in that an internal invariant was not upheld. Memory safety was not violated.

[#479]: https://github.com/time-rs/time/issues/479
[#481]: https://github.com/time-rs/time/issues/481

## 0.3.10 [2022-06-19]

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolver = "2"

[package]
name = "time"
version = "0.3.14"
version = "0.3.15"
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
edition = "2021"
rust-version = "1.59.0"
Expand Down

0 comments on commit a71691d

Please sign in to comment.