You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: blog/2025-09-24-temporal-release/index.md
+11-5Lines changed: 11 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,23 +10,29 @@ authors: temporal-dev
10
10
11
11

12
12
13
-
After almost 2+ years of development, we're pleased to announce the 0.1
14
-
release of [`temporal_rs`](https://github.com/boa-dev/temporal). A calendar and time zone aware Rust date/time
13
+
After almost 2+ years of development, we're pleased to announce the
14
+
release of [`temporal_rs`](https://crates.io/crates/temporal_rs). A calendar and time zone aware Rust date/time
15
15
library based on ECMAScript's [Temporal API][mdn].
16
16
17
17
`temporal_rs` is a highly conformant implementation of the Temporal API
18
18
in Rust that can be used in native Rust code or embedded into ECMAScript
19
19
engines / interpreters to support their implementations, which we first
20
-
announced in our first
20
+
announced in our
21
21
[Temporal blog post](../2025-06-15-temporal-impl-1.md), if you're
22
22
interested in learning more about small implementation details.
23
23
24
-
Currently, `temporal_rs` is being used by Boa, [Kiesel][kiesel-site],
24
+
Currently, `temporal_rs`v0.1 is being used by Boa, [Kiesel][kiesel-site],
25
25
[V8][v8-site], and [Yavashark][yavashark-repo] for their Temporal
26
26
implementations (more on that later) and will soon being
27
27
[shipping in Chrome](https://chromestatus.com/feature/5668291307634688).
28
28
29
-
To celebrate the 0.1 release of `temporal_rs`, we'll cover a short
29
+
### Why v0.1? Why not v1.0?
30
+
31
+
Right now the [Temporal proposal](https://github.com/tc39/proposal-temporal) is at Stage 3 in the standards process (4 being the final stage). Although unlikely,
32
+
we want to remain on a minor version to catch any changes which come in (mosty bug fixes) before the proposal reaches stage 4
33
+
and thus complete. We expect this to happen in Q1 2026.
34
+
35
+
To celebrate the release of `temporal_rs`, we'll cover a short
30
36
background of the Temporal implementation in Boa and why `temporal_rs`
31
37
was split into its own crate, we'll go over the library's general
32
38
design, and then we'll walk through a couple brief examples of using
0 commit comments