Skip to content

Commit

Permalink
Merge pull request #267 from reactive-streams/1.0.0.final-wip
Browse files Browse the repository at this point in the history
update ref to 1.0.0.final
  • Loading branch information
rkuhn committed Apr 29, 2015
2 parents bfcedb9 + 810adfe commit 9f6d8a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ The latest preview release is available on Maven Central as
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams</artifactId>
<version>1.0.0.RC5</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams-tck</artifactId>
<version>1.0.0.RC5</version>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
```
Expand Down
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ subprojects {
apply plugin: "osgi"

group = "org.reactivestreams"
version = "1.0.0.RC5"
version = "1.0.0"

sourceCompatibility = 1.6
targetCompatibility = 1.6
Expand Down Expand Up @@ -36,11 +36,13 @@ subprojects {
mavenCentral()
}


jar {
manifest {
instruction "Bundle-Vendor", "Reactive Streams SIG"
instruction "Bundle-Description", "Reactive Streams API"
instruction "Bundle-DocURL", "http://reactive-streams.org"
instructionReplace "Bundle-Vendor", "Reactive Streams SIG"
instructionReplace "Bundle-Description", "Reactive Streams API"
instructionReplace "Bundle-DocURL", "http://reactive-streams.org"
instructionReplace "Bundle-Version", "1.0.0.release"
}
}

Expand Down
2 changes: 1 addition & 1 deletion tck/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The TCK is provided as binary artifact on [Maven Central](http://search.maven.or
<dependency>
<groupId>org.reactivestreams</groupId>
<artifactId>reactive-streams-tck</artifactId>
<version>1.0.0.RC5</version>
<version>1.0.0</version>
<scope>test</scope>
</dependency>
```
Expand Down

0 comments on commit 9f6d8a6

Please sign in to comment.