Skip to content

Commit c3d7e10

Browse files
committed
bumped version
1 parent 2c29336 commit c3d7e10

File tree

20 files changed

+279
-33
lines changed

20 files changed

+279
-33
lines changed

README.md

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@
55
## [See the Wiki!](https://github.com/wordnik/swagger-core/wiki)
66
The [github wiki](https://github.com/wordnik/swagger-core/wiki) contains documentation, samples, etc. Start there
77

8+
## Where to get help!
9+
Search the [swagger google groups](https://groups.google.com/forum/#!forum/swagger-swaggersocket) for previously
10+
asked questions. Join #swagger on irc.freenode.net to talk to interesting human beings. And if you find a bug,
11+
file it in github:
12+
13+
* [Swagger core + server itegrations](https://github.com/wordnik/swagger-core/issues) issues
14+
* [Swagger UI](https://github.com/wordnik/swagger-ui/issues)
15+
* [Swagger codegen](https://github.com/wordnik/swagger-codegen/issues)
16+
17+
## Get started with Swagger!
18+
See the guide on [getting started with swagger](https://github.com/wordnik/swagger-core/wiki/Adding-Swagger-to-your-API) to get started with adding swagger to your API.
819

920
## Overview
1021
This is a project to build the swagger-core library, which is required for the Wordnik
@@ -14,6 +25,45 @@ visit http://developer.wordnik.com.
1425

1526
## Version history
1627

28+
Swagger-core v1.3.0 has been released! There are changes in the specification itself, which you can read in the [spec transition](https://github.com/wordnik/swagger-core/wiki/1.2-transition). Migration
29+
guides for the supported server integrations are being worked on now.
30+
31+
### v1.3.0 Aug-12 2013
32+
33+
<li>- Added JSON-schema draft-4 support for models
34+
35+
<li>- Support for polymorphic models with discriminiators, subtypes
36+
37+
<li>- Added apiInfo so top-level API information can be annotated in both swagger-ui and elsewhere
38+
39+
<li>- Released swagger-spec 1.2
40+
41+
<li>- Pluggable readers for scanning classes, model introspection, config reading
42+
43+
<li>- Simplified overriding of model introspection
44+
45+
<li>- Support for consumes, produces, protocols, authentications
46+
47+
<li>- oAuth support in spec
48+
49+
<li>- Support for raw servlet integration
50+
51+
<li>- Resource, operation, model property ordering
52+
53+
<li>- Polymorphic model support
54+
55+
### v1.2.5 Jun-19 2013
56+
<li>- Fixes for generic objects
57+
58+
### v1.2.4 Jun-5 2013
59+
<li>- Fixed `@Api` paths with slashes
60+
61+
<li>- Added support for model detection with deep recursion (#176)
62+
63+
<li>- i18n support (#190)
64+
65+
<li>- Master is now `stable`
66+
1767
### v1.2.3 Apr-24 2013
1868

1969
<li>- Updated to Jackson 2.1.4
@@ -81,7 +131,7 @@ You need the following installed and available in your $PATH:
81131

82132
<li>- Scala 2.9.1-1 [available here](http://www.scala-lang.org). Note that 2.9.1 has a defect which causes problems with Jax-RS
83133

84-
### To build from source (currently 1.2.4-SNAPSHOT)
134+
### To build from source (currently 1.2.4)
85135
```
86136
# first time building locally
87137
mvn -N
@@ -152,4 +202,4 @@ Unless required by applicable law or agreed to in writing, software
152202
distributed under the License is distributed on an "AS IS" BASIS,
153203
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
154204
See the License for the specific language governing permissions and
155-
limitations under the License.
205+
limitations under the License.

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.9.1</artifactId>
6-
<version>1.3.0-RC3</version>
6+
<version>1.3.0</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-annotations_2.9.1</artifactId>
12-
<version>1.3.0-RC3</version>
12+
<version>1.3.0</version>
1313
<packaging>jar</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.9.1</artifactId>
5-
<version>1.3.0-RC3</version>
5+
<version>1.3.0</version>
66
<relativePath>../..</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>com.wordnik</groupId>
1010
<artifactId>swagger-core_2.9.1</artifactId>
1111
<packaging>jar</packaging>
1212
<name>swagger-core</name>
13-
<version>1.3.0-RC3</version>
13+
<version>1.3.0</version>
1414
<build>
1515
<sourceDirectory>src/main/java</sourceDirectory>
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.9.1</artifactId>
6-
<version>1.3.0-RC3</version>
6+
<version>1.3.0</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-jaxrs_2.9.1</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.0-RC3</version>
13+
<version>1.3.0</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.9.1</artifactId>
6-
<version>1.3.0-RC3</version>
6+
<version>1.3.0</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-jersey-jaxrs_2.9.1</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.0-RC3</version>
13+
<version>1.3.0</version>
1414
<name>swagger-jersey-jaxrs</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.9.1</artifactId>
6-
<version>1.3.0-RC3</version>
6+
<version>1.3.0</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-oauth2-server_2.9.1</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.0-RC3</version>
13+
<version>1.3.0</version>
1414
<name>swagger-oauth2-server</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-servlet/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.9.1</artifactId>
6-
<version>1.3.0-RC3</version>
6+
<version>1.3.0</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-servlet_2.9.1</artifactId>
1212
<packaging>jar</packaging>
13-
<version>1.3.0-RC3</version>
13+
<version>1.3.0</version>
1414
<name>swagger-servlet</name>
1515
<build>
1616
<defaultGoal>install</defaultGoal>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>swagger-project_2.9.1</artifactId>
1010
<packaging>pom</packaging>
1111
<name>wordnik-swagger-project</name>
12-
<version>1.3.0-RC3</version>
12+
<version>1.3.0</version>
1313
<url>https://github.com/wordnik/swagger-core</url>
1414
<scm>
1515
<connection>scm:git:[email protected]:wordnik/swagger-core.git</connection>

samples/java-dropwizard/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.9.1</artifactId>
5-
<version>1.3.0-RC3</version>
5+
<version>1.3.0</version>
66
<relativePath>../..</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>com.wordnik</groupId>
1010
<artifactId>swagger-java-dropwizard-sample-app_2.9.1</artifactId>
1111
<packaging>jar</packaging>
1212
<name>swagger-java-dropwizard-app</name>
13-
<version>1.3.0-RC3</version>
13+
<version>1.3.0</version>
1414
<build>
1515
<sourceDirectory>src/main/java</sourceDirectory>
1616
<plugins>

samples/java-jaxrs-cxf/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-project_2.9.1</artifactId>
6-
<version>1.3.0-RC3</version>
6+
<version>1.3.0</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
1010
<groupId>com.wordnik</groupId>
1111
<artifactId>swagger-java-cxf-sample_2.9.1</artifactId>
1212
<packaging>war</packaging>
1313
<name>swagger-java-cxf-sample</name>
14-
<version>1.3.0-RC3</version>
14+
<version>1.3.0</version>
1515

1616
<build>
1717
<sourceDirectory>src/main/java</sourceDirectory>

0 commit comments

Comments
 (0)