Skip to content

Commit b3576aa

Browse files
authored
Update CHANGELOG.md
1 parent 411e562 commit b3576aa

File tree

1 file changed

+41
-8
lines changed

1 file changed

+41
-8
lines changed

CHANGELOG.md

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

2323
## [Unreleased]
2424
### Added
25-
- Add some code style rules to be shared via editorconfig (insert_final_newline=false)
26-
- Add `minimumTranslationPercentage` parameter to `poEditorConfig` block to specify the minimum accepted percentage of translated strings per language
25+
- No new features!
2726
### Changed
28-
- The xml attribute "encoding" in the generated string resource files is now lowercase "utf-8"
29-
- Migrate to PoEditor API v2
30-
- Update some dependencies (gradle 6.9, kotlin 1.4.20, moshi 1.12.0, okhttp 4.9.1, junit 4.13.2)
31-
- Update deprecated gradle property classifier to archiveClassifier
32-
- Update Project.xml (matching Android Studio 4.2.1)
27+
- No changed features!
3328
### Deprecated
3429
- No deprecated features!
3530
### Removed
@@ -39,6 +34,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3934
### Security
4035
- No security issues fixed!
4136

37+
## [2.3.0] - 2021-07-22
38+
### Added
39+
- Add some code style rules to be shared via editorconfig (`insert_final_newline=false`). _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
40+
- Add `minimumTranslationPercentage` parameter to `poEditorConfig` block to specify the minimum accepted percentage of translated strings per language. _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
41+
<details open><summary>Groovy</summary>
42+
43+
```groovy
44+
poEditor {
45+
apiToken = "your_api_token"
46+
projectId = 12345
47+
defaultLang = "en"
48+
minimumTranslationPercentage = 85
49+
}
50+
```
51+
52+
</details>
53+
54+
<details><summary>Kotlin</summary>
55+
56+
```kotlin
57+
poEditor {
58+
apiToken = "your_api_token"
59+
projectId = 12345
60+
defaultLang = "en"
61+
minimumTranslationPercentage = 85
62+
}
63+
```
64+
65+
</details>
66+
67+
### Changed
68+
- The XML attribute `encoding` in the generated string resource files is now lowercase `utf-8`. _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
69+
- Migrate to PoEditor API v2.
70+
- Update some dependencies (Gradle 6.9, Kotlin 1.4.20, Moshi 1.12.0, OkHttp 4.9.1, Junit 4.13.2). _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
71+
- Update deprecated Gradle property `classifier` to `archiveClassifier` _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
72+
- Update `Project.xml` (matching Android Studio 4.2.1) _Thanks to [@nokite](https://github.com/nokite) for the contribution!_
73+
4274
## [2.2.1] - 2021-05-28
4375
### Changed
4476
- Increase connect, read and write timeouts to 30 seconds
@@ -334,7 +366,8 @@ res_dir_path -> resDirPath
334366
### Added
335367
- Initial release.
336368

337-
[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.2.1...HEAD
369+
[Unreleased]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.3.0...HEAD
370+
[2.3.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.2.1...2.3.0
338371
[2.2.1]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.2.0...2.2.1
339372
[2.2.0]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.1.2...2.2.0
340373
[2.1.2]: https://github.com/hyperdevs-team/poeditor-android-gradle-plugin/compare/2.1.1...2.1.2

0 commit comments

Comments
 (0)