Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump and changelog entry for tzif #5870

Merged
merged 2 commits into from
Nov 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@
- Fix integer overflow for `LiteMap` by using correct `Store` trait method (unicode-org#5113)
- `potential_utf`: New crate `0.1.0`
- New crate with unvalidated types split from `zerovec` (unicode-org#5364)
- `resb`: New crate `0.1.0`
- New crate of utilities for reading and writing ICU resource bundle files (unicode-org#4058)
- `tzif`: New crate `0.2.3 -> 0.3.0`
- Various breaking changes to APIs from "General" section above
- `tinystr`: `0.7.6 -> 0.8.0`
- Add UTF-16 constructors
- Rename `TinyStrError` to `ParseError` (unicode-org#5405)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ fixed_decimal = { version = "0.6.0", path = "utils/fixed_decimal", default-featu
ixdtf = { version = "0.3.0", path = "utils/ixdtf", default-features = false }
litemap = { version = "0.7.3", path = "utils/litemap", default-features = false }
tinystr = { version = "0.8.0", path = "utils/tinystr", default-features = false }
tzif = { version = "0.3.0-dev", path = "utils/tzif", default-features = false }
tzif = { version = "0.3.0", path = "utils/tzif", default-features = false }
potential_utf = { version = "0.1.0", path = "utils/potential_utf", default-features = false }
writeable = { version = "0.6.0", path = "utils/writeable", default-features = false }
yoke = { version = "0.7.5", path = "utils/yoke", default-features = false }
Expand Down
1 change: 1 addition & 0 deletions utils/potential_utf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

[package]
name = "potential_utf"
description = "Unvalidated string and character types"
version = "0.1.0"
rust-version.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion utils/tzif/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[package]
name = "tzif"
description = "A parser for TZif files"
version = "0.3.0-dev"
version = "0.3.0"
keywords = ["time-zone", "posix", "iana", "parse", "data"]
categories = ["date-and-time", "parser-implementations"]

Expand Down
Loading