Skip to content

Commit 316a4de

Browse files
committed
updated version
1 parent 08cdf62 commit 316a4de

File tree

33 files changed

+78
-74
lines changed

33 files changed

+78
-74
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The Swagger Specification has undergone 3 revisions since initial creation in 20
2828
Swagger core Version | Release Date | Swagger Spec compatability | Notes | Status
2929
------------------------- | ------------ | -------------------------- | ----- | ----
3030
1.5.0 (in development) | n/a | 2.0 | [branch develop_2.0](https://github.com/wordnik/swagger-core/tree/develop_2.0) | [1.5.0 Milestone](https://github.com/wordnik/swagger-core/milestones/v1.5.0)
31-
1.3.9 | 2014-09-18 | 1.2 | [tag v1.3.9](https://github.com/wordnik/swagger-core/tree/v1.3.9)
31+
1.3.10 | 2014-09-18 | 1.2 | [tag v1.3.10](https://github.com/wordnik/swagger-core/tree/v1.3.10)
3232
1.2.4 | 2013-06-19 | 1.1 | [tag swagger-project_2.10.0-1.2.4](https://github.com/wordnik/swagger-core/tree/swagger-project_2.10.0-1.2.4)
3333
1.0.0 | 2011-10-16 | 1.0 | [tag v1.0](https://github.com/wordnik/swagger-core/tree/v1.0)
3434

@@ -49,7 +49,7 @@ You need the following installed and available in your $PATH:
4949

5050
<li>- Apache maven 3.0.4 or greater (http://maven.apache.org/)
5151

52-
### To build from source (currently 1.3.9)
52+
### To build from source (currently 1.3.10)
5353
```
5454
# first time building locally
5555
mvn -N

modules/swagger-annotations/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.9</version>
6+
<version>1.3.10</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-annotations</artifactId>
12-
<version>1.3.9</version>
12+
<version>1.3.10</version>
1313
<packaging>bundle</packaging>
1414
<name>swagger-annotations</name>
1515

modules/swagger-core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<parent>
33
<groupId>com.wordnik</groupId>
44
<artifactId>swagger-project_2.10</artifactId>
5-
<version>1.3.9</version>
5+
<version>1.3.10</version>
66
<relativePath>../..</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>com.wordnik</groupId>
1010
<artifactId>swagger-core_2.10</artifactId>
1111
<packaging>jar</packaging>
1212
<name>swagger-core</name>
13-
<version>1.3.9</version>
13+
<version>1.3.10</version>
1414
<build>
1515
<sourceDirectory>src/main/java</sourceDirectory>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-jaxrs-utils/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.9</version>
6+
<version>1.3.10</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-jaxrs-utils_2.10</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.9</version>
13+
<version>1.3.10</version>
1414
<name>swagger-jaxrs-utils</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-jaxrs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.9</version>
6+
<version>1.3.10</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-jaxrs_2.10</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.9</version>
13+
<version>1.3.10</version>
1414
<name>swagger-jaxrs</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-jersey-jaxrs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.9</version>
6+
<version>1.3.10</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-jersey-jaxrs_2.10</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.9</version>
13+
<version>1.3.10</version>
1414
<name>swagger-jersey-jaxrs</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-jersey2-jaxrs/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.9</version>
6+
<version>1.3.10</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-jersey2-jaxrs_2.10</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.9</version>
13+
<version>1.3.10</version>
1414
<name>swagger-jersey2-jaxrs (Jersey 2.x support)</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-oauth2-auth-server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.10</artifactId>
6-
<version>1.3.9</version>
6+
<version>1.3.10</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-oauth2-server_2.10</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.9</version>
13+
<version>1.3.10</version>
1414
<name>swagger-oauth2-server</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-play2-utils/project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import PlayKeys._
66

77
object ApplicationBuild extends Build {
88
val appName = "swagger-play2-utils"
9-
val appVersion = "1.3.9"
9+
val appVersion = "1.3.10"
1010

1111
scalaVersion := "2.10.3"
1212

1313
val appDependencies: Seq[sbt.ModuleID] = Seq(
1414
"org.slf4j" % "slf4j-api" % "1.6.4",
15-
"com.wordnik" %% "swagger-core" % "1.3.9",
15+
"com.wordnik" %% "swagger-core" % "1.3.10",
1616
"com.wordnik" %% "common-utils" % "1.3.0",
1717
"javax.ws.rs" % "jsr311-api" % "1.1.1")
1818

modules/swagger-play2/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
This is a module to support the play2 framework from [playframework](http://www.playframework.org). It is written in scala but can be used with either java or scala-based play2 applications.
55

66
## Version History
7+
* swagger-play2 1.3.10 supports play 2.3. If you need 2.2 support, use 1.3.7 or earlier.
78

8-
* Swagger-Play2 1.3.7 supports play 2.2. If you need 2.1 support, please use 1.3.5 or earlier
9+
* swagger-play2 1.3.7 supports play 2.2. If you need 2.1 support, please use 1.3.5 or earlier
910

10-
* Swagger-Play2 1.3.6 requires play 2.2.x.
11+
* swagger-play2 1.3.6 requires play 2.2.x.
1112

12-
* Swagger-Play2 1.2.1 and greater support scala 2.10 and play 2.0 and 2.1.
13+
* swagger-play2 1.2.1 and greater support scala 2.10 and play 2.0 and 2.1.
1314

14-
* Swagger-Play2 1.2.0 support scala 2.9.x and play 2.0, please use 1.2.0.
15+
* swagger-play2 1.2.0 support scala 2.9.x and play 2.0, please use 1.2.0.
1516

1617
Usage
1718
-----
@@ -20,7 +21,7 @@ You can depend on pre-built libraries in maven central by adding the following d
2021

2122
```
2223
val appDependencies: Seq[sbt.ModuleID] = Seq(
23-
"com.wordnik" %% "swagger-play2" % "1.3.7"
24+
"com.wordnik" %% "swagger-play2" % "1.3.10"
2425
)
2526
```
2627

@@ -29,8 +30,7 @@ Or you can build from source.
2930
```
3031
cd modules/swagger-play2
3132
32-
play
33-
publish-local
33+
sbt publishLocal
3434
```
3535

3636
### Adding Swagger to your Play2 app

0 commit comments

Comments
 (0)