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
4 changes: 4 additions & 0 deletions pkgs/intl4x/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.0-alpha.2-wip

- Add `locale.dart` entrypoint exposing only `Locale`.

## 1.0.0-alpha.1

- Update ICU4X to `2.2.0-dev.2` and other small fixes.
Expand Down
11 changes: 11 additions & 0 deletions pkgs/intl4x/lib/locale.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

/// Support for Unicode locale identifiers.
///
/// Use the [Locale] class to represent and manipulate locales.
/// @docImport 'locale.dart';
library;

export 'src/locale/locale.dart' show Locale;
Comment thread
mosuem marked this conversation as resolved.
2 changes: 1 addition & 1 deletion pkgs/intl4x/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: intl4x
description: >-
A lightweight modular library for internationalization (i18n) functionality.
version: 1.0.0-alpha.1
version: 1.0.0-alpha.2-wip
repository: https://github.com/dart-lang/i18n/tree/main/pkgs/intl4x
issue_tracker: https://github.com/dart-lang/i18n/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Aintl4x

Expand Down
Loading