Skip to content

Commit

Permalink
Merge pull request #201 from bugsnag/v411_release_notes
Browse files Browse the repository at this point in the history
v4.1.1 release notes
  • Loading branch information
fractalwrench authored Oct 12, 2017
2 parents da75734 + 01665f6 commit f8e3a51
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 4.1.1 (2017-10-12)
- Performance improvements to reduce execution time of `Bugsnag.init`

## 4.1.0 (2017-10-02)
- The SDK now automatically tracks whether an error is handled or unhandled.
- Fix for NPE in MetaData callback [Boris](https://github.com/borhub)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ This process is a little ridiculous...
ensuring both kinds of reports are sent.
- Update the `CHANGELOG` and `README.md` with any new features

- Update the version numbers in `gradle.properties` and `src/main/java/com/bugsnag/android/Notifier.java`
- Update the version number by running make VERSION=[number] bump

- Commit and tag the release

Expand Down
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,15 @@ test:

release:
./gradlew clean :uploadArchives

bump:
ifeq ($(VERSION),)
@$(error VERSION is not defined. Run with `make VERSION=number bump`)
endif
@echo Bumping the version number to $(VERSION)
@sed -i '' "s/VERSION_NAME=.*/VERSION_NAME=$(VERSION)/" gradle.properties
@sed -i '' "s/NOTIFIER_VERSION = .*;/NOTIFIER_VERSION = \"$(VERSION)\";/"\
sdk/src/main/java/com/bugsnag/android/Notifier.java



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.1.0
VERSION_NAME=4.1.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.1.0";
static final String NOTIFIER_VERSION = "4.1.1";
static final String NOTIFIER_URL = "https://bugsnag.com";
private String name;
private String version;
Expand Down

0 comments on commit f8e3a51

Please sign in to comment.