Skip to content

Commit b73ff9b

Browse files
author
Stephane Maldini
committed
Publish 1.0.0.RC1
fix #84
1 parent 6b914fc commit b73ff9b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

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.M3</version>
11+
<version>1.0.0.RC1</version>
1212
</dependency>
1313
<dependency>
1414
<groupId>org.reactivestreams</groupId>
1515
<artifactId>reactive-streams-tck</artifactId>
16-
<version>1.0.0.M3</version>
16+
<version>1.0.0.RC1</version>
1717
<scope>test</scope>
1818
</dependency>
1919
```
@@ -68,7 +68,7 @@ onError | (onSubscribe onNext* (onError | onComplete)?)
6868

6969
### SPECIFICATION
7070

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

7373
```java
7474
public interface Publisher<T> {
@@ -94,7 +94,7 @@ public interface Publisher<T> {
9494

9595
[<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.
9696

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

9999
```java
100100
public interface Subscriber<T> {
@@ -123,7 +123,7 @@ public interface Subscriber<T> {
123123
124124
[<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
125125
126-
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.M3/api/src/main/java/org/reactivestreams/Subscription.java))
126+
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC1/api/src/main/java/org/reactivestreams/Subscription.java))
127127
128128
```java
129129
public interface Subscription {
@@ -156,7 +156,7 @@ public interface Subscription {
156156
157157
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.
158158
159-
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.M3/api/src/main/java/org/reactivestreams/Processor.java))
159+
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.RC1/api/src/main/java/org/reactivestreams/Processor.java))
160160
161161
```java
162162
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {

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.M3"
6+
version = "1.0.0.RC1"
77

88
sourceCompatibility = 1.6
99
targetCompatibility = 1.6

0 commit comments

Comments
 (0)