Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
basoko committed Aug 3, 2018
1 parent 6569f23 commit ba2ad22
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

The change log has moved to this repo's [GitHub Releases Page](https://github.com/rollbar/rollbar-java/releases).

# 1.3.0
- Fix rollbar-log4j2 appender by overriding stop methods and close the Rollbar client. [#156](https://github.com/rollbar/rollbar-java/pull/156)
- Add configuration options to the rollbar-log4j2 to match the ones of the rollbar-logback. [#157](https://github.com/rollbar/rollbar-java/pull/157)
- Fix rollbar-android publication by setting in the pom.xml the packaging value as `arr`. [#158](https://github.com/rollbar/rollbar-java/pull/158)
- Fix rollbar-android dependencies to include the one declared as api. [#159](https://github.com/rollbar/rollbar-java/pull/159)
- Add feature to set up a proxy to be used by to send the payloads. [#154](https://github.com/rollbar/rollbar-java/pull/154)

## 1.2.1
- Fix NPE when not passing default values in rollbar-logback and override stop method to stop the appender [#147](https://github.com/rollbar/rollbar-java/pull/147)

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=1.2.1
VERSION_NAME=1.3.0
GROUP=com.rollbar

POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import java.util.concurrent.TimeUnit;

public class Rollbar {
private static final String NOTIFIER_VERSION = "1.2.1";
private static final String NOTIFIER_VERSION = "1.3.0";
private static final String ITEM_DIR_NAME = "rollbar-items";
private static final String ANDROID = "android";
private static final String DEFAULT_ENVIRONMENT = "production";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class NotifierProviderTest {

static final String VERSION = "1.2.1";
static final String VERSION = "1.3.0";

@Rule
public MockitoRule rule = MockitoJUnit.rule();
Expand Down

0 comments on commit ba2ad22

Please sign in to comment.