Skip to content

Commit 86c213a

Browse files
authored
Publish 0.1.2 (#625)
1 parent 062fd63 commit 86c213a

File tree

4 files changed

+29
-14
lines changed

4 files changed

+29
-14
lines changed

CHANGELOG.md

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

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

5+
## What's Changed in v0.1.2
6+
* Publish 0.1.2 by @Manishearth in [#625](https://github.com/boa-dev/temporal/pull/625)
7+
* Ignore timezones mentioned in zone.tab when constructing the canonicalization table by @Manishearth in [#624](https://github.com/boa-dev/temporal/pull/624)
8+
* Add logic to Duration::total to handle loss of precision by @nekevss in [#622](https://github.com/boa-dev/temporal/pull/622)
9+
* Add feature to force float64-representable durations by @Manishearth in [#621](https://github.com/boa-dev/temporal/pull/621)
10+
* Updates for ZonedDateTime since / until issue by @Manishearth in [#619](https://github.com/boa-dev/temporal/pull/619)
11+
* Fix returned duration sign for non-ISO date arithmetic by @Manishearth in [#618](https://github.com/boa-dev/temporal/pull/618)
12+
* Constrain durations into a range that will produce valid Temporal dates before passing to ICU4X by @Manishearth in [#615](https://github.com/boa-dev/temporal/pull/615)
13+
* Add smart pointer implementations for TimeZone traits by @jedel1043 in [#614](https://github.com/boa-dev/temporal/pull/614)
14+
* Fix serialization of durations with zero seconds and nonzero subseconds by @ptomato in [#610](https://github.com/boa-dev/temporal/pull/610)
15+
* Remove support for unqualified `islamic` calendar by @Manishearth in [#609](https://github.com/boa-dev/temporal/pull/609)
16+
* Make ISO the default AnyCalendarKind over FFI by @Manishearth in [#608](https://github.com/boa-dev/temporal/pull/608)
17+
18+
**Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.1.1...v0.1.2
19+
520
## What's Changed in v0.1.1
621
* Publish 0.1.1 by @Manishearth in [#605](https://github.com/boa-dev/temporal/pull/605)
722
* fix: allow passing `&dyn TimeZoneProvider` in arguments by @jedel1043 in [#599](https://github.com/boa-dev/temporal/pull/599)

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.1.1"
14+
version = "0.1.2"
1515
rust-version = "1.83.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.1.0", path = ".", default-features = false }
33-
timezone_provider = { version = "~0.1.0", path = "./provider" }
34-
zoneinfo_rs = { version = "~0.0.17", path = "./zoneinfo" }
32+
temporal_rs = { version = "0.1.2", path = ".", default-features = false }
33+
timezone_provider = { version = "0.1.2", path = "./provider" }
34+
zoneinfo_rs = { version = "0.0.18", path = "./zoneinfo" }
3535

3636
# Dependencies
3737
rustc-hash = "2.1.0"

zoneinfo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "zoneinfo_rs"
33
description = "Zoneinfo parser and compiler"
44
edition.workspace = true
5-
version = "0.0.17"
5+
version = "0.0.18"
66
rust-version.workspace = true
77
authors.workspace = true
88
license.workspace = true

0 commit comments

Comments
 (0)