Skip to content

Commit

Permalink
v0.3.28 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Aug 27, 2023
1 parent 1426492 commit bb9b38e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Expand Up @@ -6,6 +6,23 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver

---

## 0.3.28 [2023-08-27]

### Added

- More additional constants for the well-known `Iso8601` format description have been added. This
avoids the need to manually configure the format.
- An `[end]` component has been added. This is ignored during formatting, but is used to indicate
the end of input when parsing. If any input remains after this component, an error is returned.
This is useful when using the `[first]` component, as it avoids the need to reorder variants.

### Changed

- The exemption for MacOS introduced in 0.3.20 has been removed. This is because some supported
versions of MacOS do not meet the requirements for the exemption.
- The `UnexpectedTrailingCharacters` error variant has been moved to `ParseFromDescription`. All
previously-existing locations of this variant have been deprecated and will no longer be returned.

## 0.3.27 [2023-08-22]

This sets the `serde` dependency requirement to `>= 1.0.184` where the binaries have been removed.
Expand Down
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.1" }
time-macros = { path = "time-macros", version = "=0.2.13" }
time-macros = { path = "time-macros", version = "=0.2.14" }

criterion = { version = "0.5.1", default-features = false }
deranged = { version = "0.3.7", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion time-macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "time-macros"
version = "0.2.13"
version = "0.2.14"
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.27"
version = "0.3.28"
authors = ["Jacob Pratt <open-source@jhpratt.dev>", "Time contributors"]
edition = "2021"
rust-version = "1.67.0"
Expand Down

0 comments on commit bb9b38e

Please sign in to comment.