Skip to content

Commit

Permalink
release 0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
JakimLi committed Dec 29, 2018
1 parent 9428de6 commit b3eccb3
Show file tree
Hide file tree
Showing 4 changed files with 14 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.4
* 0.2.5

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.4',
'com.github.jakimli.pandaria:pandaria-db:0.2.4',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.4'
'com.github.jakimli.pandaria:pandaria-core:0.2.5',
'com.github.jakimli.pandaria:pandaria-db:0.2.5',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.5'
)
}
```
Expand All @@ -119,19 +119,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.2.4</version>
<version>0.2.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 @@ -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.4',
'com.github.jakimli.pandaria:pandaria-db:0.2.4',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.4'
'com.github.jakimli.pandaria:pandaria-core:0.2.5',
'com.github.jakimli.pandaria:pandaria-db:0.2.5',
'com.github.jakimli.pandaria:pandaria-mongo:0.2.5'
)
}
```
Expand All @@ -106,19 +106,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.2.4</version>
<version>0.2.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.2.4</version>
<version>0.2.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.2.4'
version = '0.2.5'
}

allprojects {
Expand Down
1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ rootProject.name = 'pandaria'
include 'pandaria-core'
include 'pandaria-db'
include 'pandaria-mongo'
include 'pandaria-ui'
include 'doc'

0 comments on commit b3eccb3

Please sign in to comment.