Skip to content

Commit 6d34d1e

Browse files
committed
Release 1.2.1
1 parent 540e47e commit 6d34d1e

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

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

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

5+
## 1.2.1
6+
- 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)
7+
58
## 1.2.0
69
- Added configuration options for `rollbar-web` and `rollbar-android` to specify how IP addresses
710
are captured. For `rollbar-web` this is configured via the `capture_ip` filter init parameter.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.2.0
1+
VERSION_NAME=1.2.1
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.2.0";
28+
private static final String NOTIFIER_VERSION = "1.2.1";
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.2.0";
17+
static final String VERSION = "1.2.1";
1818

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

0 commit comments

Comments
 (0)