Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit 4e73a63

Browse files
authored
Merge pull request #65 from swagger-api/cleanup
Cleanup
2 parents b86989d + b08d0d6 commit 4e73a63

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ scala:
55
- 2.10.6
66
- 2.11.12
77
- 2.12.6
8+
- 2.13.0

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This project is compatible with [swagger-core](https://github.com/swagger-api/sw
1919
To enable the swagger-scala-module, include the appropriate version in your project:
2020

2121
```
22-
"io.swagger" %% "swagger-scala-module" % "1.0.3"
22+
"io.swagger" %% "swagger-scala-module" % "1.0.6-SNAPSHOT"
2323
```
2424

2525
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
6666
sbt publishLocal
6767
```
6868

69+
## Security contact
70+
71+
Please disclose any security-related issues or vulnerabilities by emailing [security@swagger.io](mailto:security@swagger.io), instead of using the public issue tracker.
72+
6973
License
7074
-------
7175

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import Defaults._
66

77
organization := "io.swagger"
88

9-
version := "1.0.5"
9+
version := "1.0.6-SNAPSHOT"
1010

1111
scalaVersion := "2.11.12"
1212

13-
crossScalaVersions := Seq("2.10.6", scalaVersion.value, "2.12.6")
13+
crossScalaVersions := Seq("2.10.6", scalaVersion.value, "2.12.6", "2.13.0")
1414

1515
organizationHomepage in ThisBuild := Some(url("http://swagger.io"))
1616

@@ -24,9 +24,9 @@ pomIncludeRepository := { x => false }
2424

2525
libraryDependencies ++= Seq(
2626
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
27-
"io.swagger" % "swagger-core" % "1.5.22",
28-
"org.scalatest" %% "scalatest" % "3.0.5" % "test",
29-
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.8",
27+
"io.swagger" % "swagger-core" % "1.5.24",
28+
"org.scalatest" %% "scalatest" % "3.0.8" % "test",
29+
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.9.10",
3030
"junit" % "junit" % "4.12" % "test"
3131
)
3232

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.1.2
1+
sbt.version=1.2.8

0 commit comments

Comments
 (0)