Skip to content

Commit

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

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

# 1.4.0
- Capture local variables in stack frames with a native agent. [#169](https://github.com/rollbar/rollbar-java/pull/169)
- Only create the default sender if a custom one is not present. [#168](https://github.com/rollbar/rollbar-java/pull/168)

# 1.3.1
- Remove use of java.util.Objects as is not available in android sdk version lower than 19. [#162](https://github.com/rollbar/rollbar-java/pull/162)

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.3.1
VERSION_NAME=1.4.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.3.1";
private static final String NOTIFIER_VERSION = "1.4.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.3.1";
static final String VERSION = "1.4.0";

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

0 comments on commit 06c0f47

Please sign in to comment.