Skip to content

Commit c29a544

Browse files
committed
Update SNAPSHOT to 1.0.0.RELEASE
1 parent c5a5c6b commit c29a544

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ See the https://consul.io/intro/index.html[intro] for more information.
3636
1. Run `docker-compose up`
3737
2. Verify consul is running by visiting http://localhost:8500
3838
3. Run `mvn package` this will bring in the required spring cloud maven repositories and build
39-
4. Run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.BUILD-SNAPSHOT.jar`
39+
4. Run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.RELEASE.jar`
4040
5. visit http://localhost:8080, verify that `{"serviceId":"<yourhost>:8080","host":"<yourhost>","port":8080}` results
41-
6. run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.BUILD-SNAPSHOT.jar --server.port=8081`
41+
6. run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.RELEASE.jar --server.port=8081`
4242
7. visit http://localhost:8080 again, verify that `{"serviceId":"<yourhost>:8081","host":"<yourhost>","port":8081}` eventually shows up in the results in a round robbin fashion (may take a minute or so).
4343

4444
== Building
@@ -214,4 +214,4 @@ added after the original pull request but before a merge.
214214
other target branch in the main project).
215215
* When writing a commit message please follow http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html[these conventions],
216216
if you are fixing an existing issue please add `Fixes gh-XXXX` at the end of the commit
217-
message (where XXXX is the issue number).
217+
message (where XXXX is the issue number).

docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.cloud</groupId>
88
<artifactId>spring-cloud-consul</artifactId>
9-
<version>1.0.0.BUILD-SNAPSHOT</version>
9+
<version>1.0.0.RELEASE</version>
1010
</parent>
1111
<artifactId>spring-cloud-consul-docs</artifactId>
1212
<packaging>pom</packaging>

docs/src/main/asciidoc/README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ See the https://consul.io/intro/index.html[intro] for more information.
2727
1. Run `docker-compose up`
2828
2. Verify consul is running by visiting http://localhost:8500
2929
3. Run `mvn package` this will bring in the required spring cloud maven repositories and build
30-
4. Run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.BUILD-SNAPSHOT.jar`
30+
4. Run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.RELEASE.jar`
3131
5. visit http://localhost:8080, verify that `{"serviceId":"<yourhost>:8080","host":"<yourhost>","port":8080}` results
32-
6. run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.BUILD-SNAPSHOT.jar --server.port=8081`
32+
6. run `java -jar spring-cloud-consul-sample/target/spring-cloud-consul-sample-1.0.0.RELEASE.jar --server.port=8081`
3333
7. visit http://localhost:8080 again, verify that `{"serviceId":"<yourhost>:8081","host":"<yourhost>","port":8081}` eventually shows up in the results in a round robbin fashion (may take a minute or so).
3434

3535
== Building

docs/src/main/asciidoc/spring-cloud-consul.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,4 @@ public class Turbine {
308308
SpringApplication.run(DemoturbinecommonsApplication.class, args);
309309
}
310310
}
311-
----
311+
----

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
<groupId>org.springframework.cloud</groupId>
88
<artifactId>spring-cloud-consul</artifactId>
9-
<version>1.0.0.BUILD-SNAPSHOT</version>
9+
<version>1.0.0.RELEASE</version>
1010
<packaging>pom</packaging>
1111
<name>Spring Cloud Consul</name>
1212
<description>Spring Cloud Consul</description>
1313

1414
<parent>
1515
<groupId>org.springframework.cloud</groupId>
1616
<artifactId>spring-cloud-build</artifactId>
17-
<version>1.1.0.RELEASE</version>
17+
<version>1.1.1.RELEASE</version>
1818
<relativePath/>
1919
<!-- lookup parent from repository -->
2020
</parent>

spring-cloud-consul-bus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.cloud</groupId>
1414
<artifactId>spring-cloud-consul</artifactId>
15-
<version>1.0.0.BUILD-SNAPSHOT</version>
15+
<version>1.0.0.RELEASE</version>
1616
<relativePath>..</relativePath>
1717
</parent>
1818

spring-cloud-consul-config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.cloud</groupId>
1414
<artifactId>spring-cloud-consul</artifactId>
15-
<version>1.0.0.BUILD-SNAPSHOT</version>
15+
<version>1.0.0.RELEASE</version>
1616
<relativePath>..</relativePath>
1717
</parent>
1818

spring-cloud-consul-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.cloud</groupId>
1414
<artifactId>spring-cloud-consul</artifactId>
15-
<version>1.0.0.BUILD-SNAPSHOT</version>
15+
<version>1.0.0.RELEASE</version>
1616
<relativePath>..</relativePath>
1717
</parent>
1818

spring-cloud-consul-dependencies/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
<parent>
66
<artifactId>spring-cloud-dependencies-parent</artifactId>
77
<groupId>org.springframework.cloud</groupId>
8-
<version>1.1.0.RELEASE</version>
8+
<version>1.1.1.RELEASE</version>
99
<relativePath/>
1010
</parent>
1111
<artifactId>spring-cloud-consul-dependencies</artifactId>
12-
<version>1.0.0.BUILD-SNAPSHOT</version>
12+
<version>1.0.0.RELEASE</version>
1313
<packaging>pom</packaging>
1414
<name>spring-cloud-consul-dependencies</name>
1515
<description>Spring Cloud Consul Dependencies</description>
1616
<properties>
17-
<spring-cloud-bus.version>1.1.0.BUILD-SNAPSHOT</spring-cloud-bus.version>
18-
<spring-cloud-commons.version>1.1.0.BUILD-SNAPSHOT</spring-cloud-commons.version>
19-
<spring-cloud-netflix.version>1.1.0.BUILD-SNAPSHOT</spring-cloud-netflix.version>
17+
<spring-cloud-bus.version>1.1.0.RELEASE</spring-cloud-bus.version>
18+
<spring-cloud-commons.version>1.1.0.RELEASE</spring-cloud-commons.version>
19+
<spring-cloud-netflix.version>1.1.0.RELEASE</spring-cloud-netflix.version>
2020
<consul-api.version>1.1.9</consul-api.version>
2121
<gson.version>2.3.1</gson.version>
2222
<httpclient.version>4.5</httpclient.version>

spring-cloud-consul-discovery/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.cloud</groupId>
1414
<artifactId>spring-cloud-consul</artifactId>
15-
<version>1.0.0.BUILD-SNAPSHOT</version>
15+
<version>1.0.0.RELEASE</version>
1616
<relativePath>..</relativePath>
1717
</parent>
1818

spring-cloud-consul-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.cloud</groupId>
1414
<artifactId>spring-cloud-consul</artifactId>
15-
<version>1.0.0.BUILD-SNAPSHOT</version>
15+
<version>1.0.0.RELEASE</version>
1616
<relativePath>..</relativePath>
1717
</parent>
1818

spring-cloud-starter-consul-all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.cloud</groupId>
77
<artifactId>spring-cloud-consul</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>spring-cloud-starter-consul-all</artifactId>

spring-cloud-starter-consul-bus/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.cloud</groupId>
77
<artifactId>spring-cloud-consul</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>spring-cloud-starter-consul-bus</artifactId>

spring-cloud-starter-consul-config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.cloud</groupId>
77
<artifactId>spring-cloud-consul</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>spring-cloud-starter-consul-config</artifactId>

spring-cloud-starter-consul-discovery/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.cloud</groupId>
88
<artifactId>spring-cloud-consul</artifactId>
9-
<version>1.0.0.BUILD-SNAPSHOT</version>
9+
<version>1.0.0.RELEASE</version>
1010
<relativePath>..</relativePath>
1111
</parent>
1212
<artifactId>spring-cloud-starter-consul-discovery</artifactId>

spring-cloud-starter-consul/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.cloud</groupId>
77
<artifactId>spring-cloud-consul</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>spring-cloud-starter-consul</artifactId>

0 commit comments

Comments
 (0)