Skip to content

Commit 15ea1b8

Browse files
committed
next dev version
1 parent c9e3a22 commit 15ea1b8

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gradleErrorPronePluginVersion=3.0.1
88
errorProneVersion=2.16
99
lombokVersion=1.18.24
1010

11-
version=5.2.0
11+
version=5.2.1-SNAPSHOT
1212
group=io.github.lognet
1313
description=Spring Boot starter for Google RPC.
1414
gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter

grpc-spring-boot-starter/build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,20 @@ task generateReleaseNotes(type: JavaExec, group: "documentation") {
4747
if (m.find()) {
4848
milestoneLabel = m.group(1)
4949
}
50-
5150
if (project.hasProperty("jvmArgs")) {
5251
getJvmArguments().addAll (project.getProperty("jvmArgs").split(' '))
5352
}
5453

5554
def generator = file("changelog/github-changelog-generator.jar")
5655
classpath(generator.absolutePath)
56+
def token=System.getenv('TOKEN')
57+
5758
args(
58-
milestoneLabel
59-
, "changelog/changelog.md"
60-
, "--changelog.repository=LogNet/grpc-spring-boot-starter"
59+
milestoneLabel,
60+
"changelog/changelog.md",
61+
"--changelog.repository=LogNet/grpc-spring-boot-starter",
62+
"--github-token=$token",
63+
"--changelog.github.password=$token"
6164
)
6265
doFirst {
6366
download {

0 commit comments

Comments
 (0)