Skip to content

Commit

Permalink
Release v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kattrali committed Sep 9, 2016
1 parent c98395a commit f035147
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# Changelog

## 3.6.0 (2016-09-09)

### Enhancements

- Support optionally persisting user information between sessions using the
configuration option `persistUserBetweenSessions`
[Dave Perryman](https://github.com/Pezzah)
[#120](https://github.com/bugsnag/bugsnag-android/pull/120)

- Support initializing Bugsnag with a pre-configured Configuration instance
[Dave Perryman](https://github.com/Pezzah)
[#121](https://github.com/bugsnag/bugsnag-android/pull/121)

- Expose client context
[nicous](https://github.com/nicous)
[#112](https://github.com/bugsnag/bugsnag-android/pull/112)

- Add CPU/ABI information to device metadata
[Dave Perryman](https://github.com/Pezzah)
[Crossle Song](https://github.com/crossle)
[#119](https://github.com/bugsnag/bugsnag-android/pull/119)

### Bug Fixes

- Fix potentially misdirected error report when changing the endpoint soon
after initializing Bugsnag
[Dave Perryman](https://github.com/Pezzah)
[#121](https://github.com/bugsnag/bugsnag-android/pull/121)

- Fix missing static modifier on `disableExceptionHandler`
[Niklas Klein](https://github.com/Taig)
[#113](https://github.com/bugsnag/bugsnag-android/pull/113)

## 3.5.0 (2016-07-21)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=3.5.0
VERSION_NAME=3.6.0
GROUP=com.bugsnag

POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bugsnag/android/Notifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
class Notifier implements JsonStream.Streamable {
static final String NOTIFIER_NAME = "Android Bugsnag Notifier";
static final String NOTIFIER_VERSION = "3.5.0";
static final String NOTIFIER_VERSION = "3.6.0";
static final String NOTIFIER_URL = "https://bugsnag.com";

private static final Notifier instance = new Notifier();
Expand Down

0 comments on commit f035147

Please sign in to comment.