Skip to content

Commit 71f9379

Browse files
author
Stephane Maldini
committed
fix #134
Publish 1.0.0.M1 !
1 parent 779b8b4 commit 71f9379

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ The latest preview release is available on Maven Central as
77
<dependency>
88
<groupId>org.reactivestreams</groupId>
99
<artifactId>reactive-streams</artifactId>
10-
<version>0.4.0</version>
10+
<version>1.0.0.M1</version>
1111
</dependency>
1212
<dependency>
1313
<groupId>org.reactivestreams</groupId>
1414
<artifactId>reactive-streams-tck</artifactId>
15-
<version>0.4.0</version>
15+
<version>1.0.0.M1</version>
1616
<scope>test</scope>
1717
</dependency>
1818

@@ -66,7 +66,7 @@ onError | (onSubscribe onNext* (onError | onComplete)?)
6666

6767
### SPECIFICATION
6868

69-
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Publisher.java))
69+
#### 1. Publisher ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.M1/api/src/main/java/org/reactivestreams/Publisher.java))
7070

7171
```java
7272
public interface Publisher<T> {
@@ -92,7 +92,7 @@ public interface Publisher<T> {
9292

9393
[<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.
9494

95-
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Subscriber.java))
95+
#### 2. Subscriber ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.M1/api/src/main/java/org/reactivestreams/Subscriber.java))
9696

9797
```java
9898
public interface Subscriber<T> {
@@ -121,7 +121,7 @@ public interface Subscriber<T> {
121121
122122
[<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
123123
124-
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Subscription.java))
124+
#### 3. Subscription ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.M1/api/src/main/java/org/reactivestreams/Subscription.java))
125125
126126
```java
127127
public interface Subscription {
@@ -154,7 +154,7 @@ public interface Subscription {
154154
155155
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.
156156
157-
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v0.4.0/api/src/main/java/org/reactivestreams/Processor.java))
157+
#### 4.Processor ([Code](https://github.com/reactive-streams/reactive-streams/blob/v1.0.0.M1/api/src/main/java/org/reactivestreams/Processor.java))
158158
159159
```java
160160
public interface Processor<T, R> extends Subscriber<T>, Publisher<R> {

0 commit comments

Comments
 (0)