Skip to content

Commit

Permalink
release 0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
JakimLi committed Aug 6, 2020
1 parent 0f53ac9 commit bb380c7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 17 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Resources

Latest Release
--------------
* 0.3.4
* 0.3.5

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

Expand All @@ -117,10 +117,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.4',
'com.github.jakimli.pandaria:pandaria-db:0.3.4',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.4',
'com.github.jakimli.pandaria:pandaria-graphql:0.3.4'
'com.github.jakimli.pandaria:pandaria-core:0.3.5',
'com.github.jakimli.pandaria:pandaria-db:0.3.5',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.5',
'com.github.jakimli.pandaria:pandaria-graphql:0.3.5'
)
}
```
Expand All @@ -131,25 +131,25 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-graphql</artifactId>
<version>0.3.4</version>
<version>0.3.5</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 @@ -105,9 +105,9 @@ SELECT NAME, AGE FROM USERS
dependencies {
testCompile(
"io.cucumber:cucumber-junit:4.0.0",
'com.github.jakimli.pandaria:pandaria-core:0.3.4',
'com.github.jakimli.pandaria:pandaria-db:0.3.4',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.4'
'com.github.jakimli.pandaria:pandaria-core:0.3.5',
'com.github.jakimli.pandaria:pandaria-db:0.3.5',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.5'
)
}
```
Expand All @@ -118,19 +118,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.3.4</version>
<version>0.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.3.4</version>
<version>0.3.5</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.4'
version = '0.3.5'
}

allprojects {
Expand Down
8 changes: 7 additions & 1 deletion doc/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
Release 0.3.4 (2020-03-04) Latest
Release 0.3.5 (2020-08-06) Latest
=================================
Utilities
----
* Add debug step

Release 0.3.4 (2020-03-04)
=================================
Database Operations
----
Expand Down

0 comments on commit bb380c7

Please sign in to comment.