Skip to content

Commit

Permalink
v4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fractalwrench committed Mar 9, 2018
1 parent a689a57 commit 7b3b02b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog

## 4.3.2 (2018-03-09)

### Bug fixes

* Prevent ConcurrentModificationException in Before notify/breadcrumb callbacks [#266](https://github.com/bugsnag/bugsnag-android/pull/266)
* Ensure that exception message is never null [#256](https://github.com/bugsnag/bugsnag-android/pull/256)
* Add payload version to JSON body [#244](https://github.com/bugsnag/bugsnag-android/pull/244)
* Update context tracking to use lifecycle callbacks rather than ActivityManager [#238](https://github.com/bugsnag/bugsnag-android/pull/238)

### Enhancements

* Detect whether running on emulator [#245](https://github.com/bugsnag/bugsnag-android/pull/245)
* Add a callback for filtering breadcrumbs [#237](https://github.com/bugsnag/bugsnag-android/pull/237)


## 4.3.1 (2018-01-26)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -49,7 +49,7 @@ Running the test suite requires a connected android device or emulator.
You can run the test suite on a device/emulator as follows from within the sdk directory:

```shell
../gradlew connectedCheck
./gradlew connectedCheck
```

Running Lint
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_NAME=4.3.1
VERSION_NAME=4.3.2
GROUP=com.bugsnag
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/bugsnag/android/Notifier.java
Expand Up @@ -9,7 +9,7 @@
*/
public class Notifier implements JsonStream.Streamable {
static final String NOTIFIER_NAME = "Android Bugsnag Notifier";
static final String NOTIFIER_VERSION = "4.3.1";
static final String NOTIFIER_VERSION = "4.3.2";
static final String NOTIFIER_URL = "https://bugsnag.com";
private String name;
private String version;
Expand Down

0 comments on commit 7b3b02b

Please sign in to comment.