Skip to content

Commit d92c5b0

Browse files
committed
Release v1.0.1
1 parent d58988d commit d92c5b0

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

README.md

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,16 @@ To report problems or ask a question please [create an issue](https://github.com
3838

3939
## Installation
4040

41+
For the most basic Java applications use:
42+
4143
```groovy
42-
compile('com.rollbar:rollbar-java:1.0.0')
44+
compile('com.rollbar:rollbar-java:1.0.1')
4345
```
4446

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

4752
This package used to be divided into five modules
4853

@@ -158,15 +163,26 @@ dependency to your pom file:
158163
<dependency>
159164
<groupId>com.rollbar</groupId>
160165
<artifactId>rollbar-java</artifactId>
161-
<version>1.0.0</version>
166+
<version>1.0.1</version>
162167
</dependency>
163168
</dependencies>
164169
```
165170

166171
### Gradle
167172

168173
```groovy
169-
compile('com.rollbar:rollbar-java:1.0.0')
174+
compile('com.rollbar:rollbar-java:1.0.1')
175+
```
176+
177+
### Android
178+
179+
As described above, this library is split into different components that build upon each other.
180+
There is an Android specific part of the library. Therefore for Android you should use that
181+
interface which requires you to add this dependency to your build process. For example,
182+
183+
```groovy
184+
compile('com.rollbar:rollbar-java:1.0.1')
185+
compile('com.rollbar:rollbar-android:1.0.1@aar')
170186
```
171187

172188
## Usage

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.0.0
1+
VERSION_NAME=1.0.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.0.0";
28+
private static final String NOTIFIER_VERSION = "1.0.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
public class NotifierProviderTest {
1616

17-
static final String VERSION = "1.0.0";
17+
static final String VERSION = "1.0.1";
1818

1919
@Rule
2020
public MockitoRule rule = MockitoJUnit.rule();
@@ -42,4 +42,4 @@ public void shouldProvideTheNotifier() {
4242

4343
assertThat(result, is(expected));
4444
}
45-
}
45+
}

0 commit comments

Comments
 (0)