Skip to content

Commit

Permalink
release: 3.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tienisto committed Jan 21, 2024
1 parent 3414630 commit d5070c8
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 6 deletions.
7 changes: 7 additions & 0 deletions slang/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 3.29.0

- feat: `dart run slang analyze` supports csv files (#185) @nikaera
- feat: also add linter and coverage ignore to part files (#188) @cmenkemeller
- fix: generate base translations as fallback when using context enums where some enum values are missing (#182) @Tienisto
- fix: generate correct `part of` directive when using a custom dart file extension (#187) @cmenkemeller

## 3.28.0

- feat: add `fallback_strategy: base_locale_empty_string` to also treat empty strings as missing translations (#180)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class TranslationModelListBuilder {
);

return I18nData(
base: rawConfig.baseLocale == locale,
base: false,
locale: locale,
root: result.root,
contexts: result.contexts,
Expand Down
4 changes: 3 additions & 1 deletion slang/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: slang
description: Localization / Internationalization (i18n) solution. Use JSON, YAML, CSV, or ARB files to create typesafe translations via source generation.
version: 3.28.0
version: 3.29.0
repository: https://github.com/slang-i18n/slang
topics:
- i18n
Expand All @@ -10,6 +10,8 @@ topics:
screenshots:
- description: The slang logo.
path: resources/icon.png
funding:
- https://github.com/sponsors/Tienisto/

environment:
sdk: ">=2.17.0 <4.0.0"
Expand Down
4 changes: 4 additions & 0 deletions slang_build_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.29.0

- Bump `slang` to `3.29.0`

## 3.28.0

- Bump `slang` to `3.28.0`
Expand Down
4 changes: 2 additions & 2 deletions slang_build_runner/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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: 3.28.0
version: 3.29.0
repository: https://github.com/slang-i18n/slang

environment:
Expand All @@ -11,4 +11,4 @@ dependencies:
glob: ^2.0.2

# Use a tight version to ensure that all features are available
slang: '>=3.28.0 <3.29.0'
slang: '>=3.29.0 <3.30.0'
4 changes: 4 additions & 0 deletions slang_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.29.0

- Bump `slang` to `3.29.0`

## 3.28.0

- Bump `slang` to `3.28.0`
Expand Down
4 changes: 2 additions & 2 deletions slang_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: slang_flutter
description: Flutter support for slang. This library provides helpful Flutter API.
version: 3.28.0
version: 3.29.0
repository: https://github.com/slang-i18n/slang

environment:
Expand All @@ -12,7 +12,7 @@ dependencies:
sdk: flutter

# Use a tight version to ensure that all features are available
slang: '>=3.28.0 <3.29.0'
slang: '>=3.29.0 <3.30.0'

dev_dependencies:
flutter_test:
Expand Down

0 comments on commit d5070c8

Please sign in to comment.