Skip to content

Commit

Permalink
release 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
JakimLi committed Jan 29, 2019
1 parent 0da2ede commit e36e310
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 15 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ More [Usage](doc/usage.md)

Latest Release
--------------
* 0.2.7
* 0.2.8

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

Expand All @@ -106,9 +106,9 @@ If you don't need to verify database or mongo, just remove the `pandaria-db` or
dependencies {
testCompile(
"io.cucumber:cucumber-junit:4.0.0",
'com.github.jakimli.pandaria:pandaria-core:0.2.7',
'com.github.jakimli.pandaria:pandaria-db:0.2.7',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.7'
'com.github.jakimli.pandaria:pandaria-core:0.2.8',
'com.github.jakimli.pandaria:pandaria-db:0.2.8',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.8'
)
}
```
Expand All @@ -119,19 +119,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.2.7</version>
<version>0.2.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.2.7</version>
<version>0.2.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.2.7</version>
<version>0.2.8</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 @@ -93,9 +93,9 @@ SELECT NAME, AGE FROM USERS
dependencies {
testCompile(
"io.cucumber:cucumber-junit:4.0.0",
'com.github.jakimli.pandaria:pandaria-core:0.2.7',
'com.github.jakimli.pandaria:pandaria-db:0.2.7',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.7'
'com.github.jakimli.pandaria:pandaria-core:0.2.8',
'com.github.jakimli.pandaria:pandaria-db:0.2.8',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.8'
)
}
```
Expand All @@ -106,19 +106,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.2.7</version>
<version>0.2.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.2.7</version>
<version>0.2.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.2.7</version>
<version>0.2.8</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.2.7'
version = '0.2.8'
}

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.2.7 (2019-01-28) Latest
Release 0.2.8 (2019-01-29) Latest
=================================
Variables
---------
* Define variable by extract reponse body as plain text

Release 0.2.7 (2019-01-28)
=================================
Variables
-----------
Expand Down

0 comments on commit e36e310

Please sign in to comment.