Skip to content

Commit c21ddc0

Browse files
committed
Bump v3.0.0
1 parent b2d7c31 commit c21ddc0

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
## [Unreleased]
66

7+
## [3.0.0] (2023-03-24)
8+
79
### Added
810
- Supported OpenAI ChatGPT translator. [#118](https://github.com/Airsaid/AndroidLocalizePlugin/pull/118)
911

@@ -140,7 +142,8 @@
140142
## [1.0.0] (2018-09-24)
141143
- Initial release of the plugin.
142144

143-
[Unreleased]: https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.9.0...HEAD
145+
[Unreleased]: https://github.com/Airsaid/AndroidLocalizePlugin/compare/v3.0.0...HEAD
146+
[3.0.0]: https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.9.0...v3.0.0
144147
[2.9.0]: https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.8.0...v2.9.0
145148
[2.8.0]: https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.7.0...v2.8.0
146149
[2.7.0]: https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.6.1...v2.7.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Android localization plugin. supports multiple languages and multiple translator
1818
- Youdao translator.
1919
- Ali translator.
2020
- DeepL translator.
21+
- OpenAI ChatGPT translator.
2122
- Supports up to 100+ languages.
2223
- One key generates all translation files.
2324
- Support no translation of existing string.

README_CN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Android 本地化插件,支持多种语言和翻译器。
1717
- 有道翻译。
1818
- 阿里翻译。
1919
- DeepL 翻译。
20+
- OpenAI ChatGPT 翻译。
2021
- 支持最多 100+ 语言。
2122
- 一键生成所有翻译文件。
2223
- 支持不翻译已经存在的 string。

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ intellij {
3333

3434
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
3535
changelog {
36-
groups.set(emptyList())
37-
version.set(properties("pluginVersion"))
38-
header.set("[${version.get()}] (${date()})")
36+
groups.empty()
37+
header.set(provider { "${version.get()} (${date()})" })
38+
repositoryUrl.set(properties("pluginRepositoryUrl"))
3939
}
4040

4141
tasks {

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
pluginGroup = com.airsaid
55
pluginName = AndroidLocalize
6+
pluginRepositoryUrl = https://github.com/Airsaid/AndroidLocalizePlugin
67
# SemVer format -> https://semver.org
78
pluginVersion = 3.0.0
89

0 commit comments

Comments
 (0)