Skip to content

Commit 9760e9e

Browse files
committed
release 0.0.2
1 parent 358a853 commit 9760e9e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ You can use following Maven dependency:
1717
<dependency>
1818
<groupId>io.github.eaxdev</groupId>
1919
<artifactId>jsonsql4j</artifactId>
20-
<version>0.0.1</version>
20+
<version>0.0.2</version>
2121
</dependency>
2222
```
2323
## Gradle
2424

2525
```groovy
26-
implementation 'io.github.eaxdev:jsonsql4j:0.0.1'
26+
implementation 'io.github.eaxdev:jsonsql4j:0.0.2'
2727
```
2828
Also, you can use [GitHub Packages](https://github.com/eaxdev/JsonSQL4J/packages).
2929

@@ -52,8 +52,8 @@ Given JSON:
5252
use library:
5353

5454
```java
55-
SelectQuery selectQuery = new SelectQuery(jsonString);
56-
String query = selectQuery.getSelect();
55+
Query selectQuery = new SelectQuery(jsonString);
56+
String query = selectQuery.getQuery();
5757
// query = SELECT field1, field2 AS test FROM schema.table1 WHERE (field3 = 5 OR field4 = 3)
5858

5959
```

0 commit comments

Comments
 (0)