Skip to content

Commit 9f6d8a6

Browse files
committed
Merge pull request #267 from reactive-streams/1.0.0.final-wip
update ref to 1.0.0.final
2 parents bfcedb9 + 810adfe commit 9f6d8a6

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

Diff for: README.md

+2-2
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.RC5</version>
11+
<version>1.0.0</version>
1212
</dependency>
1313
<dependency>
1414
<groupId>org.reactivestreams</groupId>
1515
<artifactId>reactive-streams-tck</artifactId>
16-
<version>1.0.0.RC5</version>
16+
<version>1.0.0</version>
1717
<scope>test</scope>
1818
</dependency>
1919
```

Diff for: build.gradle

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

88
sourceCompatibility = 1.6
99
targetCompatibility = 1.6
@@ -36,11 +36,13 @@ subprojects {
3636
mavenCentral()
3737
}
3838

39+
3940
jar {
4041
manifest {
41-
instruction "Bundle-Vendor", "Reactive Streams SIG"
42-
instruction "Bundle-Description", "Reactive Streams API"
43-
instruction "Bundle-DocURL", "http://reactive-streams.org"
42+
instructionReplace "Bundle-Vendor", "Reactive Streams SIG"
43+
instructionReplace "Bundle-Description", "Reactive Streams API"
44+
instructionReplace "Bundle-DocURL", "http://reactive-streams.org"
45+
instructionReplace "Bundle-Version", "1.0.0.release"
4446
}
4547
}
4648

Diff for: tck/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The TCK is provided as binary artifact on [Maven Central](http://search.maven.or
2727
<dependency>
2828
<groupId>org.reactivestreams</groupId>
2929
<artifactId>reactive-streams-tck</artifactId>
30-
<version>1.0.0.RC5</version>
30+
<version>1.0.0</version>
3131
<scope>test</scope>
3232
</dependency>
3333
```

0 commit comments

Comments
 (0)