Skip to content

Commit 545e92d

Browse files
authored
v7.13.0 release (#62)
* v7.13.0 release * update dep to newer version * update * update sbt * add new file * skip compile test
1 parent 8b41acc commit 545e92d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/sbt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
- name: Setup sbt launcher
3232
uses: sbt/setup-sbt@v1
3333
- name: Cache SBT ivy cache
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.ivy2/cache
3737
key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/*.sbt') }}
3838
- name: Cache SBT
39-
uses: actions/cache@v1
39+
uses: actions/cache@v4
4040
with:
4141
path: ~/.sbt
4242
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A Sbt plugin to support the OpenAPI generator project.
99
Add to your `project/plugins.sbt`:
1010

1111
```sbt
12-
addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "7.12.0")
12+
addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "7.13.0")
1313
```
1414

1515
# Configuration

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ lazy val `sbt-openapi-generator` = (project in file("."))
2727
Resolver.sonatypeRepo("snapshots")
2828
),
2929

30-
version := "7.12.0",
30+
version := "7.13.0",
3131

3232
homepage := Some(url("https://openapi-generator.tech")),
3333

@@ -51,5 +51,5 @@ lazy val `sbt-openapi-generator` = (project in file("."))
5151
devConnection = "scm:git:ssh://git@github.com:OpenAPITools/openapi-generator.git")
5252
),
5353

54-
libraryDependencies += "org.openapitools" % "openapi-generator" % "7.11.0"
54+
libraryDependencies += "org.openapitools" % "openapi-generator" % "7.13.0"
5555
).enablePlugins(SbtPlugin)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.10.11

src/sbt-test/sbt-openapi-generator/simple/test

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ $ exists generated/src/main/scala/org/openapitools/client/core/ApiInvoker.scala
88
$ exists generated/src/main/scala/org/openapitools/client/model/ApiResponse.scala
99
$ exists generated/src/main/scala/org/openapitools/client/model/Category.scala
1010
$ exists generated/src/main/scala/org/openapitools/client/custom/api/PetApi.scala
11-
> test
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version := "0.1.0"
1+
version := "1.0.0"

0 commit comments

Comments
 (0)