Skip to content

Commit 08a77fd

Browse files
authored
Release 0.0.16 (#555)
We ended up still having an icu_time dep, oops
1 parent 2a77b5c commit 08a77fd

File tree

4 files changed

+21
-36
lines changed

4 files changed

+21
-36
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## What's Changed in v0.0.16
6+
* Bump versions to 0.0.16
7+
* Remove extraneous icu_time dependency
8+
* Add TimeZone::zero() to capi by @Manishearth in [#554](https://github.com/boa-dev/temporal/pull/554)
9+
10+
**Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.0.15...v0.0.16
11+
512
## What's Changed in v0.0.15
613
* Bump versions
714
* Update zoneinfo64 by @Manishearth in [#552](https://github.com/boa-dev/temporal/pull/552)

Cargo.lock

Lines changed: 9 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111

1212
[workspace.package]
1313
edition = "2021"
14-
version = "0.0.15"
14+
version = "0.0.16"
1515
rust-version = "1.82.0"
1616
authors = ["boa-dev"]
1717
license = "MIT OR Apache-2.0"
@@ -29,14 +29,13 @@ exclude = [
2929

3030
[workspace.dependencies]
3131
# Self
32-
temporal_rs = { version = "~0.0.15", path = ".", default-features = false }
33-
timezone_provider = { version = "~0.0.15", path = "./provider" }
34-
zoneinfo_rs = { version = "~0.0.15", path = "./zoneinfo" }
32+
temporal_rs = { version = "~0.0.16", path = ".", default-features = false }
33+
timezone_provider = { version = "~0.0.16", path = "./provider" }
34+
zoneinfo_rs = { version = "~0.0.16", path = "./zoneinfo" }
3535

3636
# Dependencies
3737
tinystr = "0.8.1"
3838
icu_calendar = { version = "2.0.3", default-features = false }
39-
icu_time = { version = "2.0.0", default-features = false }
4039
icu_locale = "2.0.0"
4140
rustc-hash = "2.1.0"
4241
num-traits = { version = "0.2.19", default-features = false }

provider/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ tzif = ["dep:tzif",
4747

4848
# Performing timezone resolution using the `zoneinfo64` crate
4949
# (ICU4C zoneinfo64.res)
50-
zoneinfo64 = ["dep:zoneinfo64", "dep:icu_time"]
50+
zoneinfo64 = ["dep:zoneinfo64"]
5151

5252
[dependencies]
5353

@@ -58,7 +58,6 @@ tinystr = { workspace = true, features = ["zerovec"] }
5858

5959
# IANA dependency
6060
zoneinfo_rs = { workspace = true, features = ["std"], optional = true }
61-
icu_time = { workspace = true, optional = true}
6261

6362
# tzif dependency
6463
tzif = { workspace = true, optional = true }

0 commit comments

Comments
 (0)