diff --git a/slang/CHANGELOG.md b/slang/CHANGELOG.md index 40171d68..07071961 100644 --- a/slang/CHANGELOG.md +++ b/slang/CHANGELOG.md @@ -1,3 +1,11 @@ +## 2.8.0 + +- feat: add `AppLocaleUtils.parseLocaleParts` +- fix: `LocaleSettings.useDeviceLocale()` now does not complain of weird locales on Linux +- fix: rich text now handles all characters +- fix: rich text properly applies param_case +- fix: empty nodes are rendered as classes instead of claiming them as plurals + ## 2.7.0 - feat: ignore empty plural / context nodes when `fallback_strategy: base_locale` is used diff --git a/slang/pubspec.yaml b/slang/pubspec.yaml index b7e30366..e95dcdee 100644 --- a/slang/pubspec.yaml +++ b/slang/pubspec.yaml @@ -1,6 +1,6 @@ name: slang description: Localization / Internationalization (i18n) solution. Use JSON, YAML or CSV files to create typesafe translations via source generation. -version: 2.7.0 +version: 2.8.0 repository: https://github.com/Tienisto/slang environment: diff --git a/slang_build_runner/CHANGELOG.md b/slang_build_runner/CHANGELOG.md index 1ef4d923..dc561cf9 100644 --- a/slang_build_runner/CHANGELOG.md +++ b/slang_build_runner/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.8.0 + +- Bump `slang` to `2.8.0` + ## 2.7.0 - Bump `slang` to `2.7.0` diff --git a/slang_build_runner/pubspec.yaml b/slang_build_runner/pubspec.yaml index 9e18096f..131a935d 100644 --- a/slang_build_runner/pubspec.yaml +++ b/slang_build_runner/pubspec.yaml @@ -1,6 +1,6 @@ name: slang_build_runner description: build_runner integration for slang. This library ensures that slang is recognized by build_runner. -version: 2.7.0 +version: 2.8.0 repository: https://github.com/Tienisto/slang environment: @@ -11,4 +11,4 @@ dependencies: glob: ^2.0.2 # Use tight version to ensure that all features are available - slang: '>=2.7.0 <2.8.0' + slang: '>=2.8.0 <2.9.0' diff --git a/slang_flutter/CHANGELOG.md b/slang_flutter/CHANGELOG.md index 09ea1a33..8db9f49e 100644 --- a/slang_flutter/CHANGELOG.md +++ b/slang_flutter/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.8.0 + +- fix: `LocaleSettings.useDeviceLocale()` now does not complain of weird locales on Linux +- Bump `slang` to `2.8.0` + ## 2.7.0 - Bump `slang` to `2.7.0` diff --git a/slang_flutter/pubspec.yaml b/slang_flutter/pubspec.yaml index 11a2198f..f3d495a6 100644 --- a/slang_flutter/pubspec.yaml +++ b/slang_flutter/pubspec.yaml @@ -1,6 +1,6 @@ name: slang_flutter description: Flutter support for slang. This library provides helpful Flutter API. -version: 2.7.0 +version: 2.8.0 repository: https://github.com/Tienisto/slang environment: @@ -11,4 +11,4 @@ dependencies: sdk: flutter # Use tight version to ensure that all features are available - slang: '>=2.7.0 <2.8.0' + slang: '>=2.8.0 <2.9.0'