Skip to content

Commit a28a0f5

Browse files
committed
更新描述
1 parent 8dba8ca commit a28a0f5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- Keep a Changelog guide -> https://keepachangelog.com -->
22

3-
# FlutterAssetsGenerator Changelog
3+
[//]: # (# FlutterAssetsGenerator Changelog)
44
## [2.4.1]
55
### Fixed
6-
- Bugs.
6+
- Bug fix.
77
## [2.4.0]
88
### Added
99
- Global configuration.

build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,9 @@ patchPluginXml {
7272
version = properties("pluginVersion")
7373
sinceBuild = properties("pluginSinceBuild")
7474
untilBuild = properties("pluginUntilBuild")
75-
def readme = new File(rootDir, "README.md")
76-
pluginDescription = ExtensionsKt.markdownToHTML(readme.text)
75+
pluginDescription = ExtensionsKt.markdownToHTML(new File(rootDir, "README.md").text)
7776
// Get the latest available change notes from the changelog file
78-
changeNotes = changelog.getLatest().toHTML()
77+
changeNotes = ExtensionsKt.markdownToHTML(new File(rootDir, "CHANGELOG.md").text)
7978
}
8079

8180
runPluginVerifier {

0 commit comments

Comments
 (0)