Skip to content

Commit 8956d39

Browse files
committed
Add comments on Changelog
1 parent 1f75aa2 commit 8956d39

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## [2.0.2]
44
### Updated
55
- Correct data extraction validator to accept columns: all
6+
- Add support for SQL queries on client
7+
- Adapt test queries to the changes on SlicingDice API
8+
- Change HTTP connection to be async
69

710
## [2.0.1]
811
### Updated

README.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SlicingDice Official Java Client (v2.0.1)
1+
# SlicingDice Official Java Client (v2.0.2)
22
### Build Status: [![CircleCI](https://circleci.com/gh/SlicingDice/slicingdice-java.svg?style=svg)](https://circleci.com/gh/SlicingDice/slicingdice-java)
33

44
Official Java client for [SlicingDice](http://www.slicingdice.com/), Data Warehouse and Analytics Database as a Service.
@@ -20,24 +20,23 @@ Whether you want to test the client installation or simply check more examples o
2020
In order to import SlicingDice's client on your application, you'll need
2121
to setup the following dependencies:
2222

23-
* [gson 2.3.2](https://github.com/google/gson)
24-
* [okhttp 3.2.0](http://square.github.io/okhttp/)
23+
* [json 20180130](https://github.com/stleary/JSON-java)
24+
* [async-http-client 2.4.2](https://github.com/AsyncHttpClient/async-http-client)
2525

2626

2727
In case you're using [Maven](https://maven.apache.org/) to manage packages,
2828
add this to your pom.xml:
2929

3030
```xml
3131
<dependency>
32-
<groupid>com.google.code.gson</groupid>
33-
<artifactid>gson</artifactid>
34-
<version>2.3.1</version>
32+
<groupId>org.asynchttpclient</groupId>
33+
<artifactId>async-http-client</artifactId>
34+
<version>2.4.2</version>
3535
</dependency>
36-
3736
<dependency>
38-
<groupid>com.squareup.okhttp3</groupid>
39-
<artifactid>okhttp</artifactid>
40-
<version>3.3.1</version>
37+
<groupId>org.json</groupId>
38+
<artifactId>json</artifactId>
39+
<version>20180130</version>
4140
</dependency>
4241
```
4342

0 commit comments

Comments
 (0)