Skip to content

Commit 0de692c

Browse files
committed
Prepare version 0.1.5
1 parent 6f9320a commit 0de692c

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JavaPhoenixClient
22

3-
[ ![Download](https://api.bintray.com/packages/drees/java-phoenix-client/JavaPhoenixClient/images/download.svg) ](https://bintray.com/drees/java-phoenix-client/JavaPhoenixClient/_latestVersion)
3+
[ ![Download](https://api.bintray.com/packages/drees/java-phoenix-client/JavaPhoenixClient/images/download.svg) ](https://bintray.com/drees/java-phoenix-client/JavaPhoenixClient/_latestVersion)
44
[![Build Status](https://travis-ci.com/dsrees/JavaPhoenixClient.svg?branch=master)](https://travis-ci.com/dsrees/JavaPhoenixClient)
55

66

@@ -44,9 +44,9 @@ You can also inject your own OkHttp Client into the Socket to provide your own c
4444
val client = OkHttpClient.Builder()
4545
.connectTimeout(1000, TimeUnit.MILLISECONDS)
4646
.build()
47-
47+
4848
val params = hashMapOf("token" to "abc123")
49-
val socket = PhxSocket("http://localhost:4000/socket/websocket",
49+
val socket = PhxSocket("http://localhost:4000/socket/websocket",
5050
multipleParams,
5151
client)
5252
```
@@ -55,7 +55,7 @@ val socket = PhxSocket("http://localhost:4000/socket/websocket",
5555
### Installation
5656

5757
JavaPhoenixClient is hosted on JCenter. You'll need to make sure you declare `jcenter()` as one of your repositories
58-
58+
5959
```
6060
repositories {
6161
jcenter()
@@ -65,7 +65,7 @@ repositories {
6565
and then add the library. See [releases](https://github.com/dsrees/JavaPhoenixClient/releases) for the latest version
6666
```$xslt
6767
dependencies {
68-
implementation 'com.github.dsrees:JavaPhoenixClient:0.1.4'
68+
implementation 'com.github.dsrees:JavaPhoenixClient:0.1.5'
6969
}
7070
```
7171

@@ -75,4 +75,3 @@ Please submit in issue if you have any problems!
7575

7676

7777
This library is built to mirror the [phoenix.js](https://hexdocs.pm/phoenix/js/) and [SwiftPhoenixClient](https://github.com/davidstump/SwiftPhoenixClient) libraries.
78-

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group 'com.github.dsrees'
11-
version '0.1.4'
11+
version '0.1.5'
1212

1313
sourceCompatibility = 1.8
1414

0 commit comments

Comments
 (0)