Skip to content

Commit

Permalink
v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
loopj committed Dec 21, 2014
1 parent 42eeb21 commit 3e93a56
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
3.1.0
-----
- Add support for leaving developer-defined log messages called "breadcrumbs"
to help understand what was happening in your application before each
crash

3.0.0
-----
- Removed dependency on `bugsnag-java`
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.0.0
VERSION_NAME=3.1.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 @@ -5,7 +5,7 @@
*/
class Notifier implements JsonStream.Streamable {
static final String NOTIFIER_NAME = "Android Bugsnag Notifier";
static final String NOTIFIER_VERSION = "3.0.0";
static final String NOTIFIER_VERSION = "3.1.0";
static final String NOTIFIER_URL = "https://bugsnag.com";

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

0 comments on commit 3e93a56

Please sign in to comment.