Skip to content

Commit bde7078

Browse files
authored
Merge pull request #2945 from swagger-api/prepare-release-2.0.4
prepare release 2.0.4
2 parents 4f438a1 + 88d8a55 commit bde7078

File tree

8 files changed

+17
-32
lines changed

8 files changed

+17
-32
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ The OpenAPI Specification has undergone several revisions since initial creation
2929

3030
Swagger core Version | Release Date | OpenAPI Spec compatibility | Notes | Status
3131
------------------------- | ------------ | -------------------------- | ----- | ----
32-
2.0.3 (**current stable**)| 2018-08-09 | 3.0 | [tag v2.0.3](https://github.com/swagger-api/swagger-core/tree/v2.0.3) | Supported
32+
2.0.4 (**current stable**)| 2018-09-05 | 3.0 | [tag v2.0.4](https://github.com/swagger-api/swagger-core/tree/v2.0.4) | Supported
33+
2.0.3 | 2018-08-09 | 3.0 | [tag v2.0.3](https://github.com/swagger-api/swagger-core/tree/v2.0.3) | Supported
3334
1.5.21 (**current stable**)| 2018-08-09 | 2.0 | [tag v1.5.21](https://github.com/swagger-api/swagger-core/tree/v1.5.21) | Supported
3435
1.5.20 | 2018-05-23 | 2.0 | [tag v1.5.20](https://github.com/swagger-api/swagger-core/tree/v1.5.20) | Supported
3536
2.0.2 | 2018-05-23 | 3.0 | [tag v2.0.2](https://github.com/swagger-api/swagger-core/tree/v2.0.2) | Supported
@@ -62,7 +63,7 @@ You need the following installed and available in your $PATH:
6263
* Jackson 2.4.5 or greater
6364

6465

65-
### To build from source (currently 2.0.4-SNAPSHOT)
66+
### To build from source (currently 2.0.5-SNAPSHOT)
6667
```
6768
# first time building locally
6869
mvn -N

modules/swagger-annotations/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,11 @@
33
<parent>
44
<groupId>io.swagger.core.v3</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.4-SNAPSHOT</version>
6+
<version>2.0.4</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>
10-
<groupId>io.swagger.core.v3</groupId>
1110
<artifactId>swagger-annotations</artifactId>
12-
<version>2.0.4-SNAPSHOT</version>
1311
<packaging>bundle</packaging>
1412
<name>swagger-annotations</name>
1513
<build>

modules/swagger-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>io.swagger.core.v3</groupId>
55
<artifactId>swagger-project</artifactId>
6-
<version>2.0.4-SNAPSHOT</version>
6+
<version>2.0.4</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/swagger-integration/pom.xml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
<parent>
77
<groupId>io.swagger.core.v3</groupId>
88
<artifactId>swagger-project</artifactId>
9-
<version>2.0.4-SNAPSHOT</version>
9+
<version>2.0.4</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
12-
<groupId>io.swagger.core.v3</groupId>
1312
<artifactId>swagger-integration</artifactId>
14-
<version>2.0.4-SNAPSHOT</version>
1513
<packaging>bundle</packaging>
1614
<name>swagger-integration</name>
1715
<dependencies>
@@ -32,12 +30,12 @@
3230
<dependency>
3331
<groupId>io.swagger.core.v3</groupId>
3432
<artifactId>swagger-core</artifactId>
35-
<version>${swagger.version}</version>
33+
<version>${project.version}</version>
3634
</dependency>
3735
<dependency>
3836
<groupId>io.swagger.core.v3</groupId>
3937
<artifactId>swagger-models</artifactId>
40-
<version>${swagger.version}</version>
38+
<version>${project.version}</version>
4139
</dependency>
4240
</dependencies>
4341
<build>
@@ -52,7 +50,4 @@
5250
</plugin>
5351
</plugins>
5452
</build>
55-
<properties>
56-
<swagger.version>2.0.4-SNAPSHOT</swagger.version>
57-
</properties>
5853
</project>

modules/swagger-jaxrs2-servlet-initializer/pom.xml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>swagger-project</artifactId>
77
<groupId>io.swagger.core.v3</groupId>
8-
<version>2.0.4-SNAPSHOT</version>
8+
<version>2.0.4</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -91,7 +91,7 @@
9191
<dependency>
9292
<groupId>io.swagger.core.v3</groupId>
9393
<artifactId>swagger-jaxrs2</artifactId>
94-
<version>${swagger.version}</version>
94+
<version>${project.version}</version>
9595
</dependency>
9696
</dependencies>
9797
<executions>
@@ -142,7 +142,7 @@
142142
<dependency>
143143
<groupId>io.swagger.core.v3</groupId>
144144
<artifactId>swagger-jaxrs2</artifactId>
145-
<version>${swagger.version}</version>
145+
<version>${project.version}</version>
146146
<scope>provided</scope>
147147
</dependency>
148148
<dependency>
@@ -183,7 +183,4 @@
183183
</exclusions>
184184
</dependency>
185185
</dependencies>
186-
<properties>
187-
<swagger.version>2.0.4-SNAPSHOT</swagger.version>
188-
</properties>
189186
</project>

modules/swagger-jaxrs2/pom.xml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>swagger-project</artifactId>
77
<groupId>io.swagger.core.v3</groupId>
8-
<version>2.0.4-SNAPSHOT</version>
8+
<version>2.0.4</version>
99
<relativePath>../../</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>
@@ -163,17 +163,17 @@
163163
<dependency>
164164
<groupId>io.swagger.core.v3</groupId>
165165
<artifactId>swagger-models</artifactId>
166-
<version>${models.version}</version>
166+
<version>${project.version}</version>
167167
</dependency>
168168
<dependency>
169169
<groupId>io.swagger.core.v3</groupId>
170170
<artifactId>swagger-annotations</artifactId>
171-
<version>${annotations.version}</version>
171+
<version>${project.version}</version>
172172
</dependency>
173173
<dependency>
174174
<groupId>io.swagger.core.v3</groupId>
175175
<artifactId>swagger-integration</artifactId>
176-
<version>${integration.version}</version>
176+
<version>${project.version}</version>
177177
</dependency>
178178
<dependency>
179179
<groupId>org.testng</groupId>
@@ -291,10 +291,4 @@
291291
<version>${jackson-version}</version>
292292
</dependency>
293293
</dependencies>
294-
<properties>
295-
<models.version>2.0.4-SNAPSHOT</models.version>
296-
<annotations.version>2.0.4-SNAPSHOT</annotations.version>
297-
<core.version>2.0.4-SNAPSHOT</core.version>
298-
<integration.version>2.0.4-SNAPSHOT</integration.version>
299-
</properties>
300294
</project>

modules/swagger-models/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>io.swagger.core.v3</groupId>
66
<artifactId>swagger-project</artifactId>
7-
<version>2.0.4-SNAPSHOT</version>
7+
<version>2.0.4</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<artifactId>swagger-project</artifactId>
1111
<packaging>pom</packaging>
1212
<name>swagger-project</name>
13-
<version>2.0.4-SNAPSHOT</version>
13+
<version>2.0.4</version>
1414
<url>https://github.com/swagger-api/swagger-core</url>
1515
<scm>
1616
<connection>scm:git:[email protected]:swagger-api/swagger-core.git</connection>

0 commit comments

Comments
 (0)