Skip to content

Commit 06c0f47

Browse files
committed
Release 1.4.0
1 parent 202e928 commit 06c0f47

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
# 1.4.0
6+
- Capture local variables in stack frames with a native agent. [#169](https://github.com/rollbar/rollbar-java/pull/169)
7+
- Only create the default sender if a custom one is not present. [#168](https://github.com/rollbar/rollbar-java/pull/168)
8+
59
# 1.3.1
610
- 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)
711

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.3.1
1+
VERSION_NAME=1.4.0
22
GROUP=com.rollbar
33

44
POM_DESCRIPTION=For connecting your applications built on the JVM to Rollbar for Error Reporting

rollbar-android/src/main/java/com/rollbar/android/Rollbar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import java.util.concurrent.TimeUnit;
2626

2727
public class Rollbar {
28-
private static final String NOTIFIER_VERSION = "1.3.1";
28+
private static final String NOTIFIER_VERSION = "1.4.0";
2929
private static final String ITEM_DIR_NAME = "rollbar-items";
3030
private static final String ANDROID = "android";
3131
private static final String DEFAULT_ENVIRONMENT = "production";

rollbar-java/src/test/java/com/rollbar/notifier/provider/notifier/NotifierProviderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
public class NotifierProviderTest {
1616

17-
static final String VERSION = "1.3.1";
17+
static final String VERSION = "1.4.0";
1818

1919
@Rule
2020
public MockitoRule rule = MockitoJUnit.rule();

0 commit comments

Comments
 (0)