Skip to content

Commit 2c48609

Browse files
committed
Prepare for next release
1 parent 0bd2f18 commit 2c48609

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ Gradle Groovy DSL
2727
```groovy
2828
plugins {
2929
id "org.springframework.boot" version "2.7.0"
30-
id "org.springdoc.openapi-gradle-plugin" version "1.4.0"
30+
id "org.springdoc.openapi-gradle-plugin" version "1.5.0"
3131
}
3232
```
3333

3434
Gradle Kotlin DSL
3535
```groovy
3636
plugins {
3737
id("org.springframework.boot") version "2.7.0"
38-
id("org.springdoc.openapi-gradle-plugin") version "1.4.0"
38+
id("org.springdoc.openapi-gradle-plugin") version "1.5.0"
3939
}
4040
```
4141

@@ -133,7 +133,7 @@ The `groupedApiMappings` customization allows you to specify multiple URLs/file
133133
2. Update the version for the plugin to match the current version found in `build.gradle.kts`
134134

135135
```
136-
id("org.springdoc.openapi-gradle-plugin") version "1.4.0"
136+
id("org.springdoc.openapi-gradle-plugin") version "1.5.0"
137137
```
138138
139139
3. Add the following to the spring boot apps `settings.gradle`

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "org.springdoc"
12-
version = "1.4.0"
12+
version = "1.5.0"
1313

1414
sonarqube {
1515
properties {

src/main/kotlin/org/springdoc/openapi/gradle/plugin/OpenApiGeneratorTask.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ open class OpenApiGeneratorTask : DefaultTask() {
8181
connection.requestMethod = "GET"
8282
connection.connect()
8383

84-
val response = String(connection.inputStream.readAllBytes(), Charsets.UTF_8)
84+
val response = String(connection.inputStream.readBytes(), Charsets.UTF_8)
8585

8686
val apiDocs = if (isYaml) response else prettifyJson(response)
8787

src/test/kotlin/org/springdoc/openapi/gradle/plugin/OpenApiGradlePluginTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class OpenApiGradlePluginTest {
4343
4444
dependencies {
4545
implementation 'org.springframework.boot:spring-boot-starter-web'
46-
implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.4.0'
46+
implementation 'org.springdoc:springdoc-openapi-webmvc-core:1.6.12'
4747
}
4848
""".trimIndent()
4949

0 commit comments

Comments
 (0)