Skip to content

Commit 27cc225

Browse files
authored
Release 0.0.15 (#553)
1 parent a038329 commit 27cc225

File tree

3 files changed

+36
-13
lines changed

3 files changed

+36
-13
lines changed

CHANGELOG.md

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

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

5+
## What's Changed in v0.0.15
6+
* Bump versions
7+
* Update zoneinfo64 by @Manishearth in [#552](https://github.com/boa-dev/temporal/pull/552)
8+
* Remove Default impl from TimeZone; use utc() everywhere by @Manishearth in [#551](https://github.com/boa-dev/temporal/pull/551)
9+
* Add missing header files by @Manishearth in [#550](https://github.com/boa-dev/temporal/pull/550)
10+
* Add provider APIs to capi by @Manishearth in [#544](https://github.com/boa-dev/temporal/pull/544)
11+
* Add new unit validation code by @Manishearth in [#542](https://github.com/boa-dev/temporal/pull/542)
12+
* Add calendar consts for calendar construction by @nekevss in [#541](https://github.com/boa-dev/temporal/pull/541)
13+
* Remove some unreachables by @Manishearth in [#543](https://github.com/boa-dev/temporal/pull/543)
14+
* Move timezone tests to testing against multiple providers by @Manishearth in [#539](https://github.com/boa-dev/temporal/pull/539)
15+
* Move TimeZone over to being Copy with TimeZoneId by @Manishearth in [#538](https://github.com/boa-dev/temporal/pull/538)
16+
* Split TimeZoneProvider trait by @Manishearth in [#537](https://github.com/boa-dev/temporal/pull/537)
17+
* Update compiled tzif data provider data by @nekevss in [#535](https://github.com/boa-dev/temporal/pull/535)
18+
* Add zoneinfo64 support to temporal_provider by @Manishearth in [#533](https://github.com/boa-dev/temporal/pull/533)
19+
* Update zoneinfo compilation in zoneinfo crate by @nekevss in [#532](https://github.com/boa-dev/temporal/pull/532)
20+
* Complete some cleanup options module by @nekevss in [#531](https://github.com/boa-dev/temporal/pull/531)
21+
* Make errors Copy by @Manishearth in [#528](https://github.com/boa-dev/temporal/pull/528)
22+
* More saturating arithmetic by @Manishearth in [#527](https://github.com/boa-dev/temporal/pull/527)
23+
* Move TimeZoneProvider to timezone_provider crate by @Manishearth in [#526](https://github.com/boa-dev/temporal/pull/526)
24+
* Clean up TimeZoneProvider crate by @Manishearth in [#525](https://github.com/boa-dev/temporal/pull/525)
25+
26+
**Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.0.14...v0.0.15
27+
528
## What's Changed in v0.0.14
629
* Release 0.0.14
730
* Fix validity checks by @Manishearth in [#523](https://github.com/boa-dev/temporal/pull/523)

Cargo.lock

Lines changed: 9 additions & 9 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 & 4 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.14"
14+
version = "0.0.15"
1515
rust-version = "1.82.0"
1616
authors = ["boa-dev"]
1717
license = "MIT OR Apache-2.0"
@@ -29,9 +29,9 @@ exclude = [
2929

3030
[workspace.dependencies]
3131
# Self
32-
temporal_rs = { version = "~0.0.14", path = ".", default-features = false }
33-
timezone_provider = { version = "~0.0.14", path = "./provider" }
34-
zoneinfo_rs = { version = "~0.0.14", path = "./zoneinfo" }
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" }
3535

3636
# Dependencies
3737
tinystr = "0.8.1"

0 commit comments

Comments
 (0)