From eb54285c9a02348799e8fd0c139fb0a5dc297958 Mon Sep 17 00:00:00 2001 From: Michael Minella Date: Tue, 28 Jun 2016 22:33:07 -0500 Subject: [PATCH] Updated versions in documentation --- spring-cloud-task-docs/src/main/asciidoc/batch.adoc | 2 +- spring-cloud-task-docs/src/main/asciidoc/getting-started.adoc | 2 +- spring-cloud-task-docs/src/main/asciidoc/stream.adoc | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-cloud-task-docs/src/main/asciidoc/batch.adoc b/spring-cloud-task-docs/src/main/asciidoc/batch.adoc index 457fa282..0e61bc17 100644 --- a/spring-cloud-task-docs/src/main/asciidoc/batch.adoc +++ b/spring-cloud-task-docs/src/main/asciidoc/batch.adoc @@ -68,7 +68,7 @@ public PartitionHandler partitionHandler(TaskLauncher taskLauncher, MavenResource.parse(String.format("%s:%s:%s", "io.spring.cloud", "partitioned-batch-job", - "1.0.0.RC1")); + "1.0.0.RELEASE")); DeployerPartitionHandler partitionHandler = new DeployerPartitionHandler(taskLauncher, jobExplorer, resource, "workerStep"); diff --git a/spring-cloud-task-docs/src/main/asciidoc/getting-started.adoc b/spring-cloud-task-docs/src/main/asciidoc/getting-started.adoc index 3d7ee091..68957e83 100644 --- a/spring-cloud-task-docs/src/main/asciidoc/getting-started.adoc +++ b/spring-cloud-task-docs/src/main/asciidoc/getting-started.adoc @@ -144,7 +144,7 @@ Spring Cloud Task itself: org.springframework.cloud spring-cloud-task-core - 1.0.0.RC1 + 1.0.0.RELEASE [[getting-started-writing-the-code]] diff --git a/spring-cloud-task-docs/src/main/asciidoc/stream.adoc b/spring-cloud-task-docs/src/main/asciidoc/stream.adoc index 6a787af6..1feb90bb 100644 --- a/spring-cloud-task-docs/src/main/asciidoc/stream.adoc +++ b/spring-cloud-task-docs/src/main/asciidoc/stream.adoc @@ -50,8 +50,8 @@ Application we created. In the example below we are registering the Processor a sample applications using the Spring Cloud Data Flow shell: ``` -module register --name taskSink --type sink --uri maven://io.spring:tasksink:1.0.0.RC1 -module register --name taskProcessor --type processor --uri maven:io.spring:taskprocessor:1.0.0.RC1 +module register --name taskSink --type sink --uri maven://io.spring:tasksink:1.0.0.RELEASE +module register --name taskProcessor --type processor --uri maven:io.spring:taskprocessor:1.0.0.RELEASE ``` Creating a stream from the Spring Cloud Data Flow shell would look like this: