diff --git a/CHANGELOG.md b/CHANGELOG.md index 483a00bb..ff73632a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ [中文](./docs/CHANGELOG/zh.md) +## 1.4.0+11 + +- add feature to export habit without records +- update `readme` + ## 1.3.2+10 - fix fastlane/zh-CN app title name diff --git a/docs/CHANGELOG/zh.md b/docs/CHANGELOG/zh.md index 9c5c24d4..3033c0d7 100644 --- a/docs/CHANGELOG/zh.md +++ b/docs/CHANGELOG/zh.md @@ -1,5 +1,10 @@ # 更新日志 +## 1.4.0+11 + +- 添加无记录导出习惯的功能 +- 更新`Readme`文档 + ## 1.3.2+10 - 修复 Fastlane/zh-CN 应用程序标题名称 diff --git a/docs/push_to_new_version.md b/docs/push_to_new_version.md index ab5e1fab..8dc1da00 100644 --- a/docs/push_to_new_version.md +++ b/docs/push_to_new_version.md @@ -5,3 +5,4 @@ 1. (Optional) Add translation text at `docs/CHANGELOG/.md` 3. (For android) Copy current version code change log from `CHANGELOG.md` to `{versionCode}.txt` (create a new file if not exist) at `fastlane/metadata/android/en-us/changelogs`. 1. (Optional) Add translation text at `fastlane/metadata/android//changelogs` + 2. (Optional) Or run `./scripts/gen_changelogs.sh` to auto generate changelogs from `CHANGELOG.md` diff --git a/fastlane/metadata/android/en-US/changelogs/11.txt b/fastlane/metadata/android/en-US/changelogs/11.txt new file mode 100644 index 00000000..d9af6a9b --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/11.txt @@ -0,0 +1,2 @@ +- add feature to export habit without records +- update `readme` diff --git a/fastlane/metadata/android/zh-CN/changelogs/11.txt b/fastlane/metadata/android/zh-CN/changelogs/11.txt new file mode 100644 index 00000000..df871665 --- /dev/null +++ b/fastlane/metadata/android/zh-CN/changelogs/11.txt @@ -0,0 +1,2 @@ +- 添加无记录导出习惯的功能 +- 更新`Readme`文档 diff --git a/pubspec.yaml b/pubspec.yaml index bbbc082f..285459f5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -20,7 +20,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.3.2+10 +version: 1.4.0+11 environment: sdk: ">=2.18.6 <3.0.0"