Skip to content

Commit

Permalink
Release 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Mar 14, 2019
1 parent 64c23f4 commit c057e12
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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.4.0
VERSION_NAME=1.4.1
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.4.0";
private static final String NOTIFIER_VERSION = "1.4.1";
private static final String ITEM_DIR_NAME = "rollbar-items";
private static final String ANDROID = "android";
private static final String DEFAULT_ENVIRONMENT = "production";
Expand Down Expand Up @@ -226,7 +226,7 @@ public Rollbar(Context context, String accessToken, String environment, boolean
* @param includeLogcat whether or not to include logcat output with items
* @param configProvider a configuration provider that can be used to customize the configuration further.
* @param captureIp one of: full, anonymize, none. This determines how the remote ip is captured.
* @param maxLogcatSize the maximum number of logcat lines to capture with items (ignored unless >= 0)
* @param maxLogcatSize the maximum number of logcat lines to capture with items (ignored unless positive)
*/
public Rollbar(Context context, String accessToken, String environment, boolean registerExceptionHandler, boolean includeLogcat, ConfigProvider configProvider, String captureIp, int maxLogcatSize) {
if (accessToken == null) {
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.4.0";
static final String VERSION = "1.4.1";

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

0 comments on commit c057e12

Please sign in to comment.