Skip to content

Commit

Permalink
v0.3.14 release
Browse files Browse the repository at this point in the history
There is intentionally no release of `time-macros`, as no behavior has
changed.
  • Loading branch information
jhpratt committed Aug 25, 2022
1 parent d358131 commit 2297a4e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver

---

## 0.3.14 [2022-08-24]

### Changed

- The minimum supported Rust version is now 1.59.0.
- `Duration::unsigned_abs` is now `const fn`.
- The const parameter for `time::format_description::well_known::Iso8601` now has a default. This
means `Iso8601` is the same as `Iso8601::DEFAULT`.
- The `Parsed` struct has been reduced in size from 56 to 32 bytes (a 43% reduction).

## 0.3.13 [2022-08-09]

### Fixed
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.13"
version = "0.3.14"
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
edition = "2021"
rust-version = "1.59.0"
Expand Down
2 changes: 1 addition & 1 deletion src/formatting/formattable.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! A trait that can d, be use to format an item from its components.
//! A trait that can be used to format an item from its components.

use core::ops::Deref;
use std::io;
Expand Down

0 comments on commit 2297a4e

Please sign in to comment.