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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ implementations (more on that later) and is [estimated](https://chromestatus.com
25
25
### Why v0.1? Why not v1.0?
26
26
27
27
Right now the [Temporal proposal](https://github.com/tc39/proposal-temporal) is at Stage 3 (4 being the final stage) in the standards process. Although unlikely,
28
-
we want to remain on a minor version to catch any changes which come in (mosty bug fixes) before the proposal reaches stage 4
28
+
we want to remain on a minor version to catch any changes which come in (mostly bug fixes) before the proposal reaches stage 4
29
29
and thus complete. We expect that to happen in Q1 2026.
30
30
31
31
Fear not! temporal_rs passes over 4000 specification tests, is stable and ready to use.
@@ -51,7 +51,7 @@ culminated in an absolutely massive PR,
51
51
52
52
The PR itself stubbed out a lot of the methods, implemented some
53
53
Duration and Instant functionality, and started the support for custom
54
-
calendars. There were, however, 2 major take aways from this PR:
54
+
calendars. There were, however, 2 major takeaways from this PR:
55
55
- Temporal is a massive specification update, it's the single biggest addition to ECMAScript since ES6.
56
56
- There is a lot of room to potentially optimize Temporal if we do not deal with
57
57
`JsValue` directly.
@@ -90,7 +90,7 @@ let date = Date::new_with_overflow(
90
90
91
91
Luckily, custom calendars and time zones were removed from the
92
92
specification in the first half of 2024, so `temporal_rs` was able to
93
-
remove that support, which greatly benefitted the entire API. For
93
+
remove that support, which greatly benefited the entire API. For
94
94
instance, here's the same code in the 0.1 version of `temporal_rs`:
0 commit comments