Skip to content
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## What's Changed in 0.0.6
* Rename methods on `Now` and add a test by @nekevss in [#243](https://github.com/boa-dev/temporal/pull/243)
* Add licenses to `temporal_capi` and `temporal_rs` for publish by @nekevss in [#247](https://github.com/boa-dev/temporal/pull/247)
* Add with to PlainYearMonth by @sebastianjacmatt in [#231](https://github.com/boa-dev/temporal/pull/231)
* initial implementation of ToZonedDateTime, ToPlainDate, ToPlainTime by @lockels in [#244](https://github.com/boa-dev/temporal/pull/244)
* Initial implementation of Duration.prototype.total by @lockels in [#241](https://github.com/boa-dev/temporal/pull/241)

**Full Changelog**: https://github.com/boa-dev/temporal/compare/v0.0.5...0.0.6

## What's Changed in 0.0.5
* Prepare temporal_capi for publish by @jedel1043 in [#238](https://github.com/boa-dev/temporal/pull/238)
* Adjustments to `toPlainYearMonth` and `toPlainMonthDay` methods on PlainDate by @nekevss in [#237](https://github.com/boa-dev/temporal/pull/237)
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ members = ["diplomat-gen", "temporal_capi"]

[workspace.package]
edition = "2021"
version = "0.0.5"
version = "0.0.6"
rust-version = "1.82.0"
authors = ["boa-dev"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,9 +19,9 @@ exclude = [
]

[workspace.dependencies]
temporal_rs = { version = "~0.0.5", path = ".", default-features = false }
temporal_rs = { version = "~0.0.6", path = ".", default-features = false }
tinystr = "0.8.1"
icu_calendar = { version = "2.0.0-beta2", default-features = false}
icu_calendar = { version = "2.0.0-beta2", default-features = false }
rustc-hash = "2.1.0"
num-traits = "0.2.19"
ixdtf = "0.4.0"
Expand Down