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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.14.0
- Update TZDB to 2026a

## 0.13.1
- Fix Dart web-only deployments by @kingwill101 in https://github.com/evoleen/time_machine2/pull/59

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

The Dart Time Machine is a date and time library for [Flutter](https://flutter.io/), and [Dart](https://www.dartlang.org/) (native, web JS and WASM) with support for time zones, calendars, cultures, formatting and parsing. Time Machine provides an alternative date and time API over Dart Core and includes an embedded copy of the [IANA time zone database](https://www.iana.org/time-zones), eliminating the need to include additional packages.

**Current TZDB version: 2025b**
**Current TZDB version: 2026a**

Time Machine's type system makes working with date and time a breeze:

Expand Down
Binary file modified lib/data/tzdb/tzdb.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/data/tzdb/tzdb.dart

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: time_machine2
description: Date and time library for Flutter, Web, and Server with support for timezones, calendars, cultures, formatting and parsing.
version: 0.13.1
version: 0.14.0
homepage: https://github.com/evoleen/time_machine2

platforms:
Expand Down
2 changes: 1 addition & 1 deletion tool/tzdb_compiler/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Future<void> main(List<String> args) async {
// https://data.iana.org/time-zones/releases/tzdata2018g.tar.gz
var tzdbCompiler = TzdbZoneInfoCompiler();
var tzdb = await tzdbCompiler
.compile('https://data.iana.org/time-zones/releases/tzdata2025b.tar.gz');
.compile('https://data.iana.org/time-zones/releases/tzdata2026a.tar.gz');
tzdb.logCounts();

//final windowsZones = LoadWindowsZones(options, tzdb.version);
Expand Down