From f4fe7d7ae6ad231276e35a8be0f1ae9135ac089d Mon Sep 17 00:00:00 2001 From: Stephane Maldini Date: Fri, 24 Apr 2015 22:51:09 +0100 Subject: [PATCH 1/4] update ref to 1.0.0.final --- README.md | 4 ++-- build.gradle | 2 +- tck/README.md | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2616228d..4afcc01b 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.final org.reactivestreams reactive-streams-tck - 1.0.0.RC5 + 1.0.0.final test ``` diff --git a/build.gradle b/build.gradle index 9be6b8fc..c895bbe3 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.final" sourceCompatibility = 1.6 targetCompatibility = 1.6 diff --git a/tck/README.md b/tck/README.md index 991398ae..8da1a741 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.final test ``` From 96f12541d1a2dc8021997b73c5f976fa0a456ca5 Mon Sep 17 00:00:00 2001 From: Stephane Maldini Date: Wed, 29 Apr 2015 10:31:24 +0100 Subject: [PATCH 2/4] change 1.0.0.final to 1.0.0 and make sure OSGI manifest has the bundle version --- README.md | 4 ++-- build.gradle | 4 +++- tck/README.md | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4afcc01b..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.final + 1.0.0 org.reactivestreams reactive-streams-tck - 1.0.0.final + 1.0.0 test ``` diff --git a/build.gradle b/build.gradle index c895bbe3..d46086cf 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ subprojects { apply plugin: "osgi" group = "org.reactivestreams" - version = "1.0.0.final" + 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" + instruction "Bundle-Version", "1.0.0" } } diff --git a/tck/README.md b/tck/README.md index 8da1a741..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.final + 1.0.0 test ``` From 712411f48ca216231b0d9bbcbad7e3ea8226fcee Mon Sep 17 00:00:00 2001 From: Stephane Maldini Date: Wed, 29 Apr 2015 10:37:10 +0100 Subject: [PATCH 3/4] OSGI fix --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index d46086cf..ecb94837 100644 --- a/build.gradle +++ b/build.gradle @@ -39,10 +39,10 @@ subprojects { jar { manifest { - instruction "Bundle-Vendor", "Reactive Streams SIG" - instruction "Bundle-Description", "Reactive Streams API" - instruction "Bundle-DocURL", "http://reactive-streams.org" - instruction "Bundle-Version", "1.0.0" + 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" } } From 810adfe4678ac6522b4fec8a5f56c802f7597a98 Mon Sep 17 00:00:00 2001 From: Stephane Maldini Date: Wed, 29 Apr 2015 12:44:55 +0100 Subject: [PATCH 4/4] OSGI fix... --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index ecb94837..d761094f 100644 --- a/build.gradle +++ b/build.gradle @@ -42,7 +42,7 @@ subprojects { 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" + instructionReplace "Bundle-Version", "1.0.0.release" } }