Skip to content

Commit 3127f56

Browse files
authored
Update CHANGELOG.md
1 parent 412af38 commit 3127f56

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222

2323
## [Unreleased]
2424
### Added
25-
- Add `filters` parameter to `poEditorConfig` block to specify the POEditor filters to use for all languages.
25+
- No new features!
2626
### Changed
2727
- No changed features!
2828
### Deprecated
@@ -34,6 +34,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3434
### Security
3535
- No security issues fixed!
3636

37+
## [2.4.0] - 2021-07-26
38+
### Added
39+
- Add `filters` parameter to `poEditorConfig` block to specify the POEditor filters to use for all languages. _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
40+
<details open><summary>Groovy</summary>
41+
42+
```groovy
43+
poEditor {
44+
apiToken = "your_api_token"
45+
projectId = 12345
46+
defaultLang = "en"
47+
filters = ["translated", "not_fuzzy"]
48+
}
49+
```
50+
51+
</details>
52+
53+
<details><summary>Kotlin</summary>
54+
55+
```kotlin
56+
poEditor {
57+
apiToken = "your_api_token"
58+
projectId = 12345
59+
defaultLang = "en"
60+
filters = listOf("translated", "not_fuzzy")
61+
}
62+
```
63+
64+
</details>
65+
3766
## [2.3.0] - 2021-07-22
3867
### Added
3968
- Add some code style rules to be shared via editorconfig (`insert_final_newline=false`). _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
@@ -366,7 +395,8 @@ res_dir_path -> resDirPath
366395
### Added
367396
- Initial release.
368397

369-
[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.3.0...HEAD
398+
[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.4.0...HEAD
399+
[2.4.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.3.0...2.4.0
370400
[2.3.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.2.1...2.3.0
371401
[2.2.1]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.2.0...2.2.1
372402
[2.2.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.1.2...2.2.0

0 commit comments

Comments
 (0)