Skip to content

Commit 6efc7c6

Browse files
author
Stephane Maldini
committed
Publish 1.0.0.RC2
fix #215
1 parent 54220e8 commit 6efc7c6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ The latest preview release is available on Maven Central as
88
<dependency>
99
<groupId>org.reactivestreams</groupId>
1010
<artifactId>reactive-streams</artifactId>
11-
<version>1.0.0.RC1</version>
11+
<version>1.0.0.RC2</version>
1212
</dependency>
1313
<dependency>
1414
<groupId>org.reactivestreams</groupId>
1515
<artifactId>reactive-streams-tck</artifactId>
16-
<version>1.0.0.RC1</version>
16+
<version>1.0.0.RC2</version>
1717
<scope>test</scope>
1818
</dependency>
1919
```
@@ -72,7 +72,7 @@ followed by a possibly unbounded number of `onNext` signals (as requested by `Su
7272

7373
### SPECIFICATION
7474

75-
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC1/api/src/main/java/org/reactivestreams/Publisher.java))
75+
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC2/api/src/main/java/org/reactivestreams/Publisher.java))
7676

7777
```java
7878
public interface Publisher<T> {
@@ -97,7 +97,7 @@ public interface Publisher<T> {
9797

9898
[<a name="footnote-1-1">1</a>] : A stateful Publisher can be overwhelmed, bounded by a finite number of underlying resources, exhausted, shut-down or in a failed state.
9999

100-
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC1/api/src/main/java/org/reactivestreams/Subscriber.java))
100+
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC2/api/src/main/java/org/reactivestreams/Subscriber.java))
101101

102102
```java
103103
public interface Subscriber<T> {
@@ -126,7 +126,7 @@ public interface Subscriber<T> {
126126
127127
[<a name="footnote-2-1">1</a>] : See JMM definition of Happen-Before in section 17.4.5. on http://docs.oracle.com/javase/specs/jls/se7/html/jls-17.html
128128
129-
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC1/api/src/main/java/org/reactivestreams/Subscription.java))
129+
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC2/api/src/main/java/org/reactivestreams/Subscription.java))
130130
131131
```java
132132
public interface Subscription {
@@ -163,7 +163,7 @@ public interface Subscription {
163163
164164
A `Subscription` is shared by exactly one `Publisher` and one `Subscriber` for the purpose of mediating the data exchange between this pair. This is the reason why the `subscribe()` method does not return the created `Subscription`, but instead returns `void`; the `Subscription` is only passed to the `Subscriber` via the `onSubscribe` callback.
165165
166-
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC1/api/src/main/java/org/reactivestreams/Processor.java))
166+
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC2/api/src/main/java/org/reactivestreams/Processor.java))
167167
168168
```java
169169
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {

Diff for: build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ subprojects {
33
apply plugin: "osgi"
44

55
group = "org.reactivestreams"
6-
version = "1.0.0.RC1"
6+
version = "1.0.0.RC2"
77

88
sourceCompatibility = 1.6
99
targetCompatibility = 1.6

0 commit comments

Comments
 (0)