Skip to content

Commit

Permalink
about to release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JakimLi committed Aug 22, 2019
1 parent f28a657 commit 46c1411
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 16 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.0
* 0.3.1

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.0',
'com.github.jakimli.pandaria:pandaria-db:0.3.0',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.0',
'com.github.jakimli.pandaria:pandaria-graphql:0.3.0'
'com.github.jakimli.pandaria:pandaria-core:0.3.1',
'com.github.jakimli.pandaria:pandaria-db:0.3.1',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.1',
'com.github.jakimli.pandaria:pandaria-graphql:0.3.1'
)
}
```
Expand All @@ -129,25 +129,25 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-graphql</artifactId>
<version>0.3.0</version>
<version>0.3.1</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.0',
'com.github.jakimli.pandaria:pandaria-db:0.3.0',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.0'
'com.github.jakimli.pandaria:pandaria-core:0.3.1',
'com.github.jakimli.pandaria:pandaria-db:0.3.1',
'com.github.jakimli.pandaria:pandaria-mongo:0.3.1'
)
}
```
Expand All @@ -116,19 +116,19 @@ dependencies {
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-core</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-db</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.jakimli.pandaria</groupId>
<artifactId>pandaria-mongo</artifactId>
<version>0.3.0</version>
<version>0.3.1</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.0'
version = '0.3.1'
}

allprojects {
Expand Down
5 changes: 5 additions & 0 deletions doc/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Release 0.3.0 (2019-05-11) Latest
=================================
HTTP
* http request header support variables

Release 0.3.0 (2019-05-11) Latest
=================================
Graphql Test
Expand Down
10 changes: 10 additions & 0 deletions doc/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,16 @@ Scenario: variable used in request file
"""
```

@since 0.3.1
#### In HTTP request header
```gherkin
* uri: /custom_header_value_from_variable
* var: value="some_value"
* header: 'SomeName'="${value}"
* send: GET
* status: 200
```

#### In code evaluation
@since 0.2.1

Expand Down

0 comments on commit 46c1411

Please sign in to comment.