Skip to content

Commit

Permalink
Bump to 23.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehschwartz committed Apr 11, 2024
1 parent 2d587af commit 5127764
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For older versions, see the original repository by [xiaodongw](https://github.co

The major and minor version of the library matches the Finatra major and minor version:
````sbt
libraryDependencies += "com.jakehschwartz" %% "finatra-swagger" % "22.7.0"
libraryDependencies += "com.jakehschwartz" %% "finatra-swagger" % "23.11.0"
````

First, create a subclass of a SwaggerModule
Expand Down
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy val finatraSwagger = project
libraryDependencies ++= Seq(
"com.twitter" %% "finatra-http-server" % twitterReleaseVersion,
"io.swagger.core.v3" % "swagger-project" % "2.2.8",
"com.github.swagger-akka-http" %% "swagger-scala-module" % "2.9.0",
"com.github.swagger-akka-http" %% "swagger-scala-module" % "2.10.0",
"com.fasterxml.jackson.datatype" % "jackson-datatype-joda" % jacksonVersion,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % jacksonVersion,
"org.webjars" % "swagger-ui" % swaggerUIVersion.value,
Expand Down Expand Up @@ -63,17 +63,17 @@ lazy val settings: Seq[sbt.Def.SettingsDefinition] = Seq(
)


lazy val twitterReleaseVersion = "22.12.0"
lazy val jacksonVersion = "2.13.3"
lazy val twitterReleaseVersion = "23.11.0"
lazy val jacksonVersion = "2.14.3"
val testLibs = Seq(
"com.twitter" %% "finatra-http-server" % twitterReleaseVersion % "test" classifier "tests",
"com.twitter" %% "inject-app" % twitterReleaseVersion % "test" classifier "tests",
"com.twitter" %% "inject-core" % twitterReleaseVersion % "test" classifier "tests",
"com.twitter" %% "inject-modules" % twitterReleaseVersion % "test" classifier "tests",
"com.twitter" %% "inject-server" % twitterReleaseVersion % "test" classifier "tests",
"ch.qos.logback" % "logback-classic" % "1.2.12",
"org.scalatest" %% "scalatest" % "3.2.15" % "test",
"org.mockito" %% "mockito-scala" % "1.17.12" % "test"
"org.scalatest" %% "scalatest" % "3.2.18" % "test",
"org.mockito" %% "mockito-scala" % "1.17.31" % "test"
)

val exampleLibs = Seq(
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version := "22.12.0"
version := "23.11.0"

0 comments on commit 5127764

Please sign in to comment.