Skip to content

Commit

Permalink
Prepare 3.1.1 links
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Maldini committed Oct 20, 2017
1 parent 4d215d9 commit 23db5e9
Show file tree
Hide file tree
Showing 16 changed files with 494 additions and 497 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ With Gradle from repo.spring.io or Maven Central repositories (stable releases o
}
dependencies {
//compile "io.projectreactor:reactor-core:3.1.0.BUILD-SNAPSHOT"
//compile "io.projectreactor:reactor-core:3.1.2.BUILD-SNAPSHOT"
//testCompile("io.projectreactor:reactor-test:BUILD-SNAPSHOT")
//compile "io.projectreactor:reactor-core:3.1.0.RC1"
//testCompile("io.projectreactor:reactor-test:3.1.0.RC1")
compile "io.projectreactor:reactor-core:3.1.0.RELEASE"
testCompile("io.projectreactor:reactor-test:3.1.0.RELEASE")
compile "io.projectreactor:reactor-core:3.1.1.RELEASE"
testCompile("io.projectreactor:reactor-test:3.1.1.RELEASE")
}
```

Expand All @@ -56,7 +56,7 @@ A Reactive Streams Publisher with basic flow operators.
- Static factories on Flux allow for source generation from arbitrary callbacks types.
- Instance methods allows operational building, materialized on each _Flux#subscribe()_, _Flux#subscribe()_ or multicasting operations such as _Flux#publish_ and _Flux#publishNext_.

[<img src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.M3/src/docs/marble/flux.png" width="500">](http://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html)
[<img src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/flux.png" width="500">](http://projectreactor.io/docs/core/release/api/reactor/core/publisher/Flux.html)

Flux in action :
```java
Expand All @@ -75,7 +75,7 @@ A Reactive Streams Publisher constrained to *ZERO* or *ONE* element with appropr
- Static factories on Mono allow for deterministic *zero or one* sequence generation from arbitrary callbacks types.
- Instance methods allows operational building, materialized on each _Mono#subscribe()_ or _Mono#get()_ eventually called.

[<img src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.M3/src/docs/marble/mono.png" width="500">](http://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html)
[<img src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/mono.png" width="500">](http://projectreactor.io/docs/core/release/api/reactor/core/publisher/Mono.html)

Mono in action :
```java
Expand Down
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import me.champeau.gradle.japicmp.JapicmpTask
import org.gradle.api.internal.plugins.osgi.OsgiHelper

/*
* Copyright (c) 2011-2017 Pivotal Software Inc, All Rights Reserved.
*
Expand All @@ -16,6 +13,8 @@ import org.gradle.api.internal.plugins.osgi.OsgiHelper
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import me.champeau.gradle.japicmp.JapicmpTask
import org.gradle.api.internal.plugins.osgi.OsgiHelper

buildscript {
ext.kotlinVersion = '1.1.51'
Expand Down Expand Up @@ -330,7 +329,7 @@ project('reactor-core') {
}

task kdocZip(type: Zip, dependsOn: dokka) {
//ends up similar to javadoc jar: reactor-core-3.1.0.RELEASE-kdoc.zip
//ends up similar to javadoc jar: reactor-core-xxxx.RELEASE-kdoc.zip
classifier = 'kdoc'
from("${project.buildDir}/docs/kdoc")
}
Expand Down Expand Up @@ -474,7 +473,7 @@ project('reactor-test') {
}

task kdocZip(type: Zip, dependsOn: dokka) {
//ends up similar to javadoc jar: reactor-test-3.1.0.RELEASE-kdoc.zip
//ends up similar to javadoc jar: reactor-test-xxx.RELEASE-kdoc.zip
classifier = 'kdoc'
from("${project.buildDir}/docs/kdoc")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public abstract class ConnectableFlux<T> extends Flux<T> {
* subscribes.
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/autoconnect.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/autoconnect.png" alt="">
*
* @return a {@link Flux} that connects to the upstream source when the first {@link org.reactivestreams.Subscriber} subscribes
*/
Expand All @@ -54,7 +54,7 @@ public final Flux<T> autoConnect() {
* triggers the connection.
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/autoconnect.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/autoconnect.png" alt="">
*
* @param minSubscribers the minimum number of subscribers
*
Expand All @@ -71,7 +71,7 @@ public final Flux<T> autoConnect(int minSubscribers) {
* @param cancelSupport the consumer that will receive the {@link Disposable} that allows disconnecting
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/autoconnect.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/autoconnect.png" alt="">
*
* @return a {@link Flux} that connects to the upstream source when the given amount of subscribers subscribed
*/
Expand Down Expand Up @@ -118,7 +118,7 @@ public final Disposable connect() {
* when all Subscribers cancelled or the upstream source completed.
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/refCount.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/refCount.png" alt="">
*
* @return a reference counting {@link Flux}
*/
Expand All @@ -131,7 +131,7 @@ public final Flux<T> refCount() {
* when all Subscribers cancelled or the upstream source completed.
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/refCount.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/refCount.png" alt="">
*
* @param minSubscribers the number of subscribers expected to subscribe before connection
*
Expand All @@ -149,7 +149,7 @@ public final Flux<T> refCount(int minSubscribers) {
* in during the {@code gracePeriod} that follows, the disconnection is cancelled.
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/refCount.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/refCount.png" alt="">
*
* @param minSubscribers the number of subscribers expected to subscribe before connection
* @param gracePeriod the {@link Duration} for which to wait for new subscribers before actually
Expand All @@ -169,7 +169,7 @@ public final Flux<T> refCount(int minSubscribers, Duration gracePeriod) {
* in during the {@code gracePeriod} that follows, the disconnection is cancelled.
*
* <p>
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/refCount.png" alt="">
* <img class="marble" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/refCount.png" alt="">
*
* @param minSubscribers the number of subscribers expected to subscribe before connection
* @param gracePeriod the {@link Duration} for which to wait for new subscribers before actually
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
* the parent sequence after a given {@link Subscriber} is subscribed.
* <p>
* <p>
* <img width="640" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.0.RC1/src/docs/marble/emitter.png"
* <img width="640" src="https://raw.githubusercontent.com/reactor/reactor-core/v3.1.1.RELEASE/src/docs/marble/emitter.png"
* alt="">
* <p>
*
Expand Down
Loading

0 comments on commit 23db5e9

Please sign in to comment.