Skip to content

Commit 7508e50

Browse files
committed
Bump version and extend README
1 parent 01d37da commit 7508e50

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ And this to your module build.gradle:
1919

2020
```groovy
2121
dependencies {
22-
compile 'com.github.proxer:ProxerLibJava:3.2.1'
22+
compile 'com.github.proxer:ProxerLibJava:4.0.0'
2323
}
2424
```
2525

26-
You can also download the `jar` directly from [here](https://jitpack.io/com/github/proxer/ProxerLibJava/3.2.1/ProxerLibJava-3.2.1.jar), if you prefer.
26+
You can also download the `jar` directly from [here](https://jitpack.io/com/github/proxer/ProxerLibJava/4.0.0/ProxerLibJava-4.0.0.jar), if you prefer.
2727

2828
> Note that this jar does not come with the required dependencies. You have to include those manually in that case.
2929
@@ -48,6 +48,7 @@ Method | Description
4848
`client` | Sets a custom `OkHttpClient` instance, used for Http requests. Note, that various interceptors are still applied, to make the API work properly.
4949
`retrofit` | Sets a custom `Retrofit` instance.
5050
`logginStrategy` | Allows for simple logging of Http requests, sent through the API. Available strategies are: `NONE`, `API`, `ALL`.
51+
`loggingTag` | Sets a custom tag for logging.
5152

5253
### Sending a request
5354

@@ -237,6 +238,8 @@ If you are using ProGuard, the following config is required:
237238

238239
```proguard
239240
# Config for ProxerLibJava itself
241+
-dontwarn com.uber.javaxextras.**
242+
240243
-keep enum me.proxer.library.** {
241244
**[] $VALUES;
242245
public *;
@@ -267,7 +270,7 @@ If you are using ProGuard, the following config is required:
267270

268271
### More
269272

270-
You can find detailed JavaDoc [here](https://jitpack.io/com/github/proxer/ProxerLibJava/3.2.1/javadoc/).
273+
You can find detailed JavaDoc [here](https://jitpack.io/com/github/proxer/ProxerLibJava/4.0.0/javadoc/).
271274

272275
## Working on the library
273276

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
version = '3.2.1'
3+
version = '4.0.0'
44
group = 'com.github.proxer'
55

66
errorpronePluginVersion = '0.0.11'

0 commit comments

Comments
 (0)