Skip to content

Commit 3c920aa

Browse files
committed
release v1.1.0
Signed-off-by: Tristan Leo <[email protected]>
1 parent 6a0a7e4 commit 3c920aa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ kotlin-openapi3-dsl is available on maven central
1212
### gradle
1313

1414
```groovy
15-
compile "cc.vileda:kotlin-openapi3-dsl:1.1.0"
15+
compile "cc.vileda:kotlin-openapi3-dsl:1.1.1"
1616
```
1717

1818
### maven
1919
```xml
2020
<dependency>
2121
<groupId>cc.vileda</groupId>
2222
<artifactId>kotlin-openapi3-dsl</artifactId>
23-
<version>1.1.0</version>
23+
<version>1.1.1</version>
2424
</dependency>
2525
```
2626

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: 'maven-publish'
1919
apply plugin: 'signing'
2020

2121
group 'cc.vileda'
22-
version '1.1.0'
22+
version '1.1.1'
2323

2424
repositories {
2525
mavenCentral()
@@ -84,10 +84,10 @@ publishing {
8484
repositories {
8585
maven {
8686
name = "GitHubPackages"
87-
url = "https://maven.pkg.github.com/octocat/hello-world"
87+
url = "https://maven.pkg.github.com/derveloper/kotlin-openapi3-dsl"
8888
credentials {
89-
username = System.getenv("GITHUB_ACTOR")
90-
password = System.getenv("GITHUB_TOKEN")
89+
username = System.getenv("GITHUB_ACTOR") ?: "derveloper"
90+
password = System.getenv("GITHUB_TOKEN") ?: ""
9191
}
9292
}
9393
}

0 commit comments

Comments
 (0)