Skip to content

Commit 217d2d1

Browse files
committed
Update the date sensitive values for a 9-24 release
1 parent be5b408 commit 217d2d1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.

blog/2025-09-23-temporal-release/index.md renamed to blog/2025-09-24-temporal-release/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ let diff = today
289289
let tomorrow_japanese = tomorrow.with_calendar(Calendar::JAPANESE);
290290

291291
// We can retrieve the calendar's RFC9557 string
292-
println!("{tomorrow_japanese}"); // 2025-09-23[u-ca=japanese]
292+
println!("{tomorrow_japanese}"); // 2025-09-24[u-ca=japanese]
293293
```
294294

295295
#### Working with dates and time zones
@@ -316,15 +316,15 @@ let today = Temporal::now().zoned_date_time_iso(None).unwrap();
316316
let mut options = DifferenceSettings::default();
317317
options.largest_unit = Some(Unit::Year);
318318
let diff = today.since(&zdt, options).unwrap();
319-
println!("{diff}"); // P6M22D
319+
println!("{diff}"); // P6M23D
320320

321321
// We can change the calendar for the `ZonedDateTime`
322322
let today_coptic = today.with_calendar(Calendar::COPTIC);
323-
println!("{today_coptic}"); // 2025-09-23T12:36:56.914365368-05:00[America/Chicago][u-ca=coptic]
323+
println!("{today_coptic}"); // 2025-09-24T10:36:56.914365368-05:00[America/Chicago][u-ca=coptic]
324324

325325
// We can also easily convert it into just the date.
326326
let today_plain_date_coptic = today_coptic.to_plain_date();
327-
println!("{today_coptic}"); // 2025-09-23[u-ca=coptic]
327+
println!("{today_coptic}"); // 2025-09-24[u-ca=coptic]
328328
```
329329

330330
While we can extend these examples further, a more fun exercise for the

0 commit comments

Comments
 (0)