Skip to content

Commit 5e2c21d

Browse files
authored
Update groupID and readme. (#4031)
1 parent e222162 commit 5e2c21d

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,35 @@ It extends the [observer pattern](http://en.wikipedia.org/wiki/Observer_pattern)
66

77
#### Version 2.x
88

9-
Version 2.x and 1.x will live side-by-side for several years. They will have different namespaces (io.reactivex vs rx).
9+
Version 2.x and 1.x will live side-by-side for several years. They will have different group ids (`io.reactivex.rxjava2` vs `io.reactivex`) and namespaces (`io.reactivex` vs `rx`).
1010

1111
The purpose for 2.x is:
1212

13-
- leverage Java 8+ features
13+
- continued support for Java 6+ & [Android](https://github.com/ReactiveX/RxAndroid) 2.3+
1414
- [Reactive Streams](http://www.reactive-streams.org) compatibility
1515
- performance gains through design changes learned through the 1.x cycle
1616

17+
##### Releases
18+
19+
The release plan for 2.x is as [follows](https://github.com/ReactiveX/RxJava/issues/4016):
20+
21+
- 26/08/2016: Release Candidate 1: stabilized API and feature set
22+
- 23/09/2016: Release Candidate 2: addressing feedback from RC 1
23+
- 21/10/2016: Release Candidate 3: addressing feedback from RC 2
24+
- 29/10/2016: Stable Release: General availability
25+
26+
The snapshots of merges into the 2.x branch (developer preview) are available as follows:
27+
28+
```
29+
repositories {
30+
maven { url 'https://oss.jfrog.org/libs-snapshot' }
31+
}
32+
33+
dependencies {
34+
compile 'io.reactivex.rxjava2:rxjava:2.0.0-DP0-SNAPSHOT'
35+
}
36+
```
37+
1738
#### Version 1.x
1839

1940
- Zero Dependencies

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ buildscript {
33
dependencies { classpath 'com.netflix.nebula:gradle-rxjava-project-plugin:4.0.0' }
44
}
55

6+
group = 'io.reactivex.rxjava2'
7+
68
description = 'RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.'
79

810
apply plugin: 'java'

0 commit comments

Comments
 (0)