Skip to content

Commit

Permalink
Release v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Mar 21, 2018
1 parent d58988d commit d92c5b0
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 8 deletions.
24 changes: 20 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,16 @@ To report problems or ask a question please [create an issue](https://github.com

## Installation

For the most basic Java applications use:

```groovy
compile('com.rollbar:rollbar-java:1.0.0')
compile('com.rollbar:rollbar-java:1.0.1')
```

## Upgrading from 0.5.4 or earlier to 1.0.0
If you require direct access to the underlying API objects include `rollbar-api` as a dependency.
For Android include `rollbar-android:1.0.1@aar`. For web projects include `rollbar-web`.

## Upgrading from 0.5.4 or earlier to 1.0.0+

This package used to be divided into five modules

Expand Down Expand Up @@ -158,15 +163,26 @@ dependency to your pom file:
<dependency>
<groupId>com.rollbar</groupId>
<artifactId>rollbar-java</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</dependency>
</dependencies>
```

### Gradle

```groovy
compile('com.rollbar:rollbar-java:1.0.0')
compile('com.rollbar:rollbar-java:1.0.1')
```

### Android

As described above, this library is split into different components that build upon each other.
There is an Android specific part of the library. Therefore for Android you should use that
interface which requires you to add this dependency to your build process. For example,

```groovy
compile('com.rollbar:rollbar-java:1.0.1')
compile('com.rollbar:rollbar-android:1.0.1@aar')
```

## Usage
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.0.0
VERSION_NAME=1.0.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.0.0";
private static final String NOTIFIER_VERSION = "1.0.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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class NotifierProviderTest {

static final String VERSION = "1.0.0";
static final String VERSION = "1.0.1";

@Rule
public MockitoRule rule = MockitoJUnit.rule();
Expand Down Expand Up @@ -42,4 +42,4 @@ public void shouldProvideTheNotifier() {

assertThat(result, is(expected));
}
}
}

0 comments on commit d92c5b0

Please sign in to comment.