Skip to content

Commit 6dfc583

Browse files
committed
Fixed maven central artifacts
1 parent 8cba633 commit 6dfc583

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ Conductor is architecture-agnostic and does not try to force any design decision
2020
## Installation
2121

2222
```gradle
23-
compile 'com.bluelinelabs:conductor:1.1.5'
23+
compile 'com.bluelinelabs:conductor:1.1.6'
2424
2525
// If you want the components that go along with
2626
// Android's support libraries (currently just a PagerAdapter):
27-
compile 'com.bluelinelabs:conductor-support:1.1.5'
27+
compile 'com.bluelinelabs:conductor-support:1.1.6'
2828
2929
// If you want RxJava/RxAndroid lifecycle support:
30-
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.5'
30+
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.6'
3131
```
3232

3333
SNAPSHOT:
3434
```gradle
35-
compile 'com.bluelinelabs:conductor:1.1.6-SNAPSHOT'
36-
compile 'com.bluelinelabs:conductor-support:1.1.6-SNAPSHOT'
37-
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.6-SNAPSHOT'
35+
compile 'com.bluelinelabs:conductor:1.1.7-SNAPSHOT'
36+
compile 'com.bluelinelabs:conductor-support:1.1.7-SNAPSHOT'
37+
compile 'com.bluelinelabs:conductor-rxlifecycle:1.1.7-SNAPSHOT'
3838
```
3939

4040
## Components to Know
@@ -116,7 +116,7 @@ The lifecycle of a Controller is significantly simpler to understand than that o
116116
`addChildController` can be called on a `Controller` in order to add nested `Controller`s. Child `Controller`s will receive all lifecycle callbacks that parents get.
117117

118118
### RxJava Lifecycle
119-
If the RxLifecycle dependency has been added, there is an `RxController` available that can be used along with the standard [RxLifecycle library](https://github.com/trello/RxLifecycle). There is also a `ControllerLifecycleProvider` available if you do not wish to use this subclass.
119+
If the RxLifecycle dependency has been added, there is an `RxController` available that can be used along with the standard [RxLifecycle library](https://github.com/trello/RxLifecycle). There is also a `ControllerLifecycleProvider` available if you do not wish to use this subclass.
120120

121121
## License
122122
```
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
POM_NAME=Conductor RxLifecycle Extensions
22
POM_ARTIFACT_ID=conductor-rxlifecycle
3-
POM_PACKAGING=jar
3+
POM_PACKAGING=aar

conductor-support/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
POM_NAME=Conductor Support Extensions
22
POM_ARTIFACT_ID=conductor-support
3-
POM_PACKAGING=jar
3+
POM_PACKAGING=aar

conductor/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
POM_NAME=Conductor
22
POM_ARTIFACT_ID=conductor
3-
POM_PACKAGING=jar
3+
POM_PACKAGING=aar

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.1.6-SNAPSHOT
1+
VERSION_NAME=1.1.7-SNAPSHOT
22
VERSION_CODE=2
33
GROUP=com.bluelinelabs
44

0 commit comments

Comments
 (0)