Skip to content

Commit b6875b7

Browse files
authored
Update CHANGELOG and bump version to 0.0.7 (#301)
This PR preps for v0.0.7 release. It bumps the package versions to the new version and updates the changelog for the release.
1 parent 601a1f8 commit b6875b7

File tree

3 files changed

+43
-9
lines changed

3 files changed

+43
-9
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
1+
## What's Changed in 0.0.7
2+
* Bump ixdtf and complete changes for update by @nekevss in [#299](https://github.com/boa-dev/temporal/pull/299)
3+
* A few more changes to the readme by @nekevss in [#297](https://github.com/boa-dev/temporal/pull/297)
4+
* Implement a builder API for Now by @nekevss in [#296](https://github.com/boa-dev/temporal/pull/296)
5+
* Some docs cleanup and updates by @nekevss in [#294](https://github.com/boa-dev/temporal/pull/294)
6+
* Add `PlainMonthDay` method + clean up by @nekevss in [#284](https://github.com/boa-dev/temporal/pull/284)
7+
* Add Eq, Ord impls on FiniteF64 by @sffc in [#187](https://github.com/boa-dev/temporal/pull/187)
8+
* Allow parsers to accept unvalidated UTF8 by @HalidOdat in [#295](https://github.com/boa-dev/temporal/pull/295)
9+
* Bump to icu_calendar 2.0 by @nekevss in [#292](https://github.com/boa-dev/temporal/pull/292)
10+
* Add ISO specific constructors to builtins by @nekevss in [#263](https://github.com/boa-dev/temporal/pull/263)
11+
* Rename the provider crate by @nekevss in [#289](https://github.com/boa-dev/temporal/pull/289)
12+
* Expose equals and compare over FFI by @Magnus-Fjeldstad in [#269](https://github.com/boa-dev/temporal/pull/269)
13+
* Impl round_with_provider for ZonedDateTIme by @sebastianjacmatt in [#278](https://github.com/boa-dev/temporal/pull/278)
14+
* Add some compiled_data FFI APIs by @Manishearth in [#273](https://github.com/boa-dev/temporal/pull/273)
15+
* Add string conversion functions for Temporal types by @Manishearth in [#276](https://github.com/boa-dev/temporal/pull/276)
16+
* Make sure temporal_capi can be built no_std by @Manishearth in [#281](https://github.com/boa-dev/temporal/pull/281)
17+
* Make iana-time-zone dep optional by @Manishearth in [#279](https://github.com/boa-dev/temporal/pull/279)
18+
* Implementation of ZonedDateTime.prototype.with by @lockels in [#267](https://github.com/boa-dev/temporal/pull/267)
19+
* Update Duration's inner representation from floating point to integers. by @nekevss in [#268](https://github.com/boa-dev/temporal/pull/268)
20+
* Add all-features = true to docs.rs metadata by @Manishearth in [#271](https://github.com/boa-dev/temporal/pull/271)
21+
* Fix instant math in capi by @Manishearth in [#270](https://github.com/boa-dev/temporal/pull/270)
22+
* Remove the Temporal prefix from Unit, RoundingMode, and UnsignedRoundingMode by @nekevss in [#254](https://github.com/boa-dev/temporal/pull/254)
23+
* Since until by @sebastianjacmatt in [#259](https://github.com/boa-dev/temporal/pull/259)
24+
* Implementation of toZonedDateTimeISO for Instant by @lockels in [#258](https://github.com/boa-dev/temporal/pull/258)
25+
* Implement toZonedDateTime in PlainDate by @JohannesHelleve in [#192](https://github.com/boa-dev/temporal/pull/192)
26+
* Add intro documentation to ZonedDateTime and PlainDateTime by @nekevss in [#253](https://github.com/boa-dev/temporal/pull/253)
27+
* Implement IANA normalizer baked data provider by @nekevss in [#251](https://github.com/boa-dev/temporal/pull/251)
28+
29+
## New Contributors
30+
* @HalidOdat made their first contribution in [#295](https://github.com/boa-dev/temporal/pull/295)
31+
* @JohannesHelleve made their first contribution in [#192](https://github.com/boa-dev/temporal/pull/192)
32+
33+
**Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.0.6...0.0.7
34+
135
## What's Changed in 0.0.6
236
* Rename methods on `Now` and add a test by @nekevss in [#243](https://github.com/boa-dev/temporal/pull/243)
337
* Add licenses to `temporal_capi` and `temporal_rs` for publish by @nekevss in [#247](https://github.com/boa-dev/temporal/pull/247)

Cargo.lock

Lines changed: 5 additions & 5 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
@@ -4,7 +4,7 @@ members = ["diplomat-gen", "bakeddata", "provider", "temporal_capi"]
44

55
[workspace.package]
66
edition = "2021"
7-
version = "0.0.6"
7+
version = "0.0.7"
88
rust-version = "1.82.0"
99
authors = ["boa-dev"]
1010
license = "MIT OR Apache-2.0"
@@ -21,8 +21,8 @@ exclude = [
2121

2222
[workspace.dependencies]
2323
# Self
24-
temporal_rs = { version = "~0.0.6", path = ".", default-features = false }
25-
timezone_provider = { version = "~0.0.6", path = "./provider" }
24+
temporal_rs = { version = "~0.0.7", path = ".", default-features = false }
25+
timezone_provider = { version = "~0.0.7", path = "./provider" }
2626

2727
# Dependencies
2828
tinystr = "0.8.1"
@@ -59,7 +59,6 @@ icu_calendar = { workspace = true, features = ["compiled_data"] }
5959
icu_locale.workspace = true
6060
num-traits.workspace = true
6161
ixdtf = { workspace = true, features = ["duration"]}
62-
iana-time-zone = { workspace = true, optional = true }
6362
writeable = "0.6.1"
6463

6564
# log feature
@@ -73,6 +72,7 @@ timezone_provider = { workspace = true, optional = true}
7372

7473
# System time feature
7574
web-time = { workspace = true, optional = true }
75+
iana-time-zone = { workspace = true, optional = true }
7676
core_maths = "0.1.1"
7777

7878
[features]

0 commit comments

Comments
 (0)