Skip to content

Commit

Permalink
about to release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JakimLi committed Nov 20, 2019
1 parent 36a8c37 commit c6d575d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 18 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Resources

Latest Release
--------------
* 0.3.2
* 0.3.3

See [Release Notes](doc/release_notes.md)

Expand All @@ -115,10 +115,10 @@ If you don't need to verify database mongo, or graphql, just remove the `pandari
dependencies {
testCompile(
"io.cucumber:cucumber-junit:4.0.0",
'com.github.jakimli.pandaria:pandaria-core:0.3.2',
'com.github.jakimli.pandaria:pandaria-db:0.3.2',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.2',
'com.github.jakimli.pandaria:pandaria-graphql:0.3.2'
'com.github.jakimli.pandaria:pandaria-core:0.3.3',
'com.github.jakimli.pandaria:pandaria-db:0.3.3',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.3',
'com.github.jakimli.pandaria:pandaria-graphql:0.3.3'
)
}
```
Expand All @@ -129,25 +129,25 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-graphql</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
12 changes: 6 additions & 6 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ SELECT NAME, AGE FROM USERS
dependencies {
testCompile(
"io.cucumber:cucumber-junit:4.0.0",
'com.github.jakimli.pandaria:pandaria-core:0.3.2',
'com.github.jakimli.pandaria:pandaria-db:0.3.2',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.2'
'com.github.jakimli.pandaria:pandaria-core:0.3.3',
'com.github.jakimli.pandaria:pandaria-db:0.3.3',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.3'
)
}
```
Expand All @@ -116,19 +116,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.3.2</version>
<version>0.3.3</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'java'

allprojects {
group = 'com.github.jakimli.pandaria'
version = '0.3.2'
version = '0.3.3'
}

allprojects {
Expand Down
11 changes: 9 additions & 2 deletions doc/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
Release 0.3.0 (2019-11-05) Latest
Release 0.3.3 (2019-11-20) Latest
=================================
Verification
----
* fix defect when response body returns simple array


Release 0.3.2 (2019-11-05)
=================================
HTTP
----
Expand All @@ -8,7 +15,7 @@ Verification
---------
* nested variable reference in verification key

Release 0.3.0 (2019-05-11)
Release 0.3.1 (2019-05-11)
=================================

HTTP
Expand Down

0 comments on commit c6d575d

Please sign in to comment.