diff --git a/README.md b/README.md index 2616228d..faedf3a6 100644 --- a/README.md +++ b/README.md @@ -8,12 +8,12 @@ The latest preview release is available on Maven Central as org.reactivestreams reactive-streams - 1.0.0.RC5 + 1.0.0 org.reactivestreams reactive-streams-tck - 1.0.0.RC5 + 1.0.0 test ``` diff --git a/build.gradle b/build.gradle index 9be6b8fc..d761094f 100644 --- a/build.gradle +++ b/build.gradle @@ -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 @@ -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" } } diff --git a/tck/README.md b/tck/README.md index 991398ae..147b111f 100644 --- a/tck/README.md +++ b/tck/README.md @@ -27,7 +27,7 @@ The TCK is provided as binary artifact on [Maven Central](http://search.maven.or org.reactivestreams reactive-streams-tck - 1.0.0.RC5 + 1.0.0 test ```