Skip to content

Commit 2297a4e

Browse files
committed
v0.3.14 release
There is intentionally no release of `time-macros`, as no behavior has changed.
1 parent d358131 commit 2297a4e

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

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

77
---
88

9+
## 0.3.14 [2022-08-24]
10+
11+
### Changed
12+
13+
- The minimum supported Rust version is now 1.59.0.
14+
- `Duration::unsigned_abs` is now `const fn`.
15+
- The const parameter for `time::format_description::well_known::Iso8601` now has a default. This
16+
means `Iso8601` is the same as `Iso8601::DEFAULT`.
17+
- The `Parsed` struct has been reduced in size from 56 to 32 bytes (a 43% reduction).
18+
919
## 0.3.13 [2022-08-09]
1020

1121
### Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resolver = "2"
44

55
[package]
66
name = "time"
7-
version = "0.3.13"
7+
version = "0.3.14"
88
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
99
edition = "2021"
1010
rust-version = "1.59.0"

src/formatting/formattable.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! A trait that can d, be use to format an item from its components.
1+
//! A trait that can be used to format an item from its components.
22
33
use core::ops::Deref;
44
use std::io;

0 commit comments

Comments
 (0)