diff --git a/.travis.yml b/.travis.yml index 01263ec..eb688e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,4 @@ scala: - 2.10.6 - 2.11.12 - 2.12.6 + - 2.13.0 diff --git a/README.md b/README.md index e4aae95..3996b70 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This project is compatible with [swagger-core](https://github.com/swagger-api/sw To enable the swagger-scala-module, include the appropriate version in your project: ``` - "io.swagger" %% "swagger-scala-module" % "1.0.3" + "io.swagger" %% "swagger-scala-module" % "1.0.6-SNAPSHOT" ``` Which will include the proper cross-publish version of swagger-scala-module. @@ -66,6 +66,10 @@ See the guide on [getting started with swagger](http://swagger.io) to get starte sbt publishLocal ``` +## Security contact + +Please disclose any security-related issues or vulnerabilities by emailing [security@swagger.io](mailto:security@swagger.io), instead of using the public issue tracker. + License ------- diff --git a/build.sbt b/build.sbt index 13b847b..ae240fc 100644 --- a/build.sbt +++ b/build.sbt @@ -6,11 +6,11 @@ import Defaults._ organization := "io.swagger" -version := "1.0.5" +version := "1.0.6-SNAPSHOT" scalaVersion := "2.11.12" -crossScalaVersions := Seq("2.10.6", scalaVersion.value, "2.12.6") +crossScalaVersions := Seq("2.10.6", scalaVersion.value, "2.12.6", "2.13.0") organizationHomepage in ThisBuild := Some(url("http://swagger.io")) @@ -24,9 +24,9 @@ pomIncludeRepository := { x => false } libraryDependencies ++= Seq( "org.scala-lang" % "scala-reflect" % scalaVersion.value, - "io.swagger" % "swagger-core" % "1.5.22", - "org.scalatest" %% "scalatest" % "3.0.5" % "test", - "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.8", + "io.swagger" % "swagger-core" % "1.5.24", + "org.scalatest" %% "scalatest" % "3.0.8" % "test", + "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.10", "junit" % "junit" % "4.12" % "test" ) diff --git a/project/build.properties b/project/build.properties index 0531343..c0bab04 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.1.2 +sbt.version=1.2.8