Skip to content

Commit

Permalink
Release v4.3.1 (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
kattrali authored Jan 26, 2018
1 parent 041e830 commit b88d360
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 4.3.1 (2018-01-26)

### Bug fixes

* Fix possible ANR when enabling session tracking via
`Bugsnag.setAutoCaptureSessions()` and connecting to latent networks.
[#231](https://github.com/bugsnag/bugsnag-android/pull/231)

* Fix invalid payloads being sent when processing multiple Bugsnag events in the
same millisecond
[#235](https://github.com/bugsnag/bugsnag-android/pull/235)

* Re-add API key to error report HTTP request body to preserve backwards
compatibility with older versions of the error reporting API
[#228](https://github.com/bugsnag/bugsnag-android/pull/228)

## 4.3.0 (2018-01-18)

- Move capture of thread stacktraces to start of notify process
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
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.0
VERSION_NAME=4.3.1
GROUP=com.bugsnag
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:[email protected]:bugsnag/bugsnag-android.git
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/main/java/com/bugsnag/android/Notifier.java
Original file line number Diff line number Diff line change
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.0";
static final String NOTIFIER_VERSION = "4.3.1";
static final String NOTIFIER_URL = "https://bugsnag.com";
private String name;
private String version;
Expand Down

0 comments on commit b88d360

Please sign in to comment.