From f5c2602f67227eedc8a789ca2fb31e3e9b4be664 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Mon, 18 Nov 2024 21:34:37 +0800 Subject: [PATCH] update to v7.10.0 (#57) --- README.md | 2 +- build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 69d5c7c..af650b9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A Sbt plugin to support the OpenAPI generator project. Add to your `project/plugins.sbt`: ```sbt -addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "7.9.0") +addSbtPlugin("org.openapitools" % "sbt-openapi-generator" % "7.10.0") ``` # Configuration diff --git a/build.sbt b/build.sbt index 7be15c1..d966c40 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ lazy val `sbt-openapi-generator` = (project in file(".")) Resolver.sonatypeRepo("snapshots") ), - version := "7.9.0", + version := "7.10.0", homepage := Some(url("https://openapi-generator.tech")), @@ -51,5 +51,5 @@ lazy val `sbt-openapi-generator` = (project in file(".")) devConnection = "scm:git:ssh://git@github.com:OpenAPITools/openapi-generator.git") ), - libraryDependencies += "org.openapitools" % "openapi-generator" % "7.9.0" + libraryDependencies += "org.openapitools" % "openapi-generator" % "7.10.0" ).enablePlugins(SbtPlugin)