Skip to content

Commit 477ba32

Browse files
committed
Prepare for release 1.4.0
1 parent 80aa810 commit 477ba32

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog for RxJava2Debug
22

3+
## v1.4.0 2018/11/24
4+
* Improve enhanced exception's `localisedMessage` (for example, show `caused by java.langNullPointerException: The mapper function returned a null value` instead of `null`)
5+
* Fix packages comflict with RxJava2Extensions
6+
37
## v1.3.0 2018/10/28
48
* Fixed compatibility with RxJava-2.2.1 (thanks to @akarnokd)
59

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# RxJava2Debug [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=Quickly%20find%20out%20the%20source%20issue%20causing%20your%20RxJava2%20stream%20fail&url=https://github.com/akaita/RxJava2Debug&via=github&hashtags=rxjava,debug,fixthatcrash)
22

33
[![License](https://img.shields.io/badge/License%20-Apache%202-337ab7.svg)](https://www.apache.org/licenses/LICENSE-2.0)
4-
[![Maven](https://img.shields.io/badge/%20Maven%20-1.3.0-5bc0de.svg) ](https://mvnrepository.com/artifact/com.akaita.java/rxjava2-debug/1.3.0)
5-
[![Jcenter](https://img.shields.io/badge/%20Jcenter%20-1.3.0-5bc0de.svg) ](https://bintray.com/akaita/java/rxjava2-debug/_latestVersion)
4+
[![Maven](https://img.shields.io/badge/%20Maven%20-1.4.0-5bc0de.svg) ](https://mvnrepository.com/artifact/com.akaita.java/rxjava2-debug/1.4.0)
5+
[![Jcenter](https://img.shields.io/badge/%20Jcenter%20-1.4.0-5bc0de.svg) ](https://bintray.com/akaita/java/rxjava2-debug/_latestVersion)
66
[![Arsenal](https://img.shields.io/badge/%20Arsenal%20-%20RxJava2Debug%20-4cae4c.svg?style=flat)](https://android-arsenal.com/details/1/6027)
7-
[![Methods](https://img.shields.io/badge/%20Methods%20%7C%20Size%20-%20239%20%7C%2040%20KB-d9534f.svg)](http://www.methodscount.com/?lib=com.akaita.java%3Arxjava2-debug%3A1.3.0)
7+
[![Methods](https://img.shields.io/badge/%20Methods%20%7C%20Size%20-%20239%20%7C%2040%20KB-d9534f.svg)](http://www.methodscount.com/?lib=com.akaita.java%3Arxjava2-debug%3A1.4.0)
88

99
A library to make StackTraces involving RxJava2 more meaningful (they will always point to your code!).
1010

@@ -30,7 +30,7 @@ repositories {
3030
}
3131
3232
dependencies {
33-
compile 'com.akaita.java:rxjava2-debug:1.3.0'
33+
compile 'com.akaita.java:rxjava2-debug:1.4.0'
3434
}
3535
```
3636

@@ -41,7 +41,7 @@ repositories {
4141
}
4242
4343
dependencies {
44-
compile 'com.akaita.java:rxjava2-debug:1.3.0'
44+
compile 'com.akaita.java:rxjava2-debug:1.4.0'
4545
}
4646
```
4747

@@ -142,7 +142,7 @@ Example (pointing to my own faulty code in `com.akaita.fgas.activities.TopActivi
142142
```java
143143
FATAL EXCEPTION: main
144144
Process: com.akaita.fgas.debug, PID: 22538
145-
java.lang.Throwable: The mapper function returned a null value.
145+
java.lang.Throwable: caused by java.lang.NullPointerException: The mapper function returned a null value.
146146
at io.reactivex.internal.functions.ObjectHelper.requireNonNull(ObjectHelper.java:39)
147147
at io.reactivex.internal.operators.observable.ObservableMap$MapObserver.onNext(ObservableMap.java:59)
148148
at hu.akarnokd.rxjava2.debug.ObservableOnAssembly$OnAssemblyObserver.onNext(ObservableOnAssembly.java:55)
@@ -233,7 +233,7 @@ Result:
233233
```java
234234
FATAL EXCEPTION: main
235235
Process: com.akaita.fgas.debug, PID: 22538
236-
java.lang.Throwable: The mapper function returned a null value.
236+
java.lang.Throwable: caused by java.lang.NullPointerException: The mapper function returned a null value.
237237
at io.reactivex.internal.functions.ObjectHelper.requireNonNull(ObjectHelper.java:39)
238238
at io.reactivex.internal.operators.observable.ObservableMap$MapObserver.onNext(ObservableMap.java:59)
239239
[...]

rxjava2debug/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jar {
8787
manifest {
8888
name = 'rxjava2-debug'
8989
instruction 'Bundle-Vendor', 'akaita'
90-
instruction 'Bundle-DocURL', 'https://github.com/akarnokd/RxJava2Debug'
90+
instruction 'Bundle-DocURL', 'https://github.com/akaita/RxJava2Debug'
9191
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
9292
instruction 'Eclipse-ExtensibleAPI', 'true'
9393
}

rxjava2debug/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.3.0
1+
version=1.4.0

0 commit comments

Comments
 (0)