Skip to content

Commit 44fe521

Browse files
committed
prepare for release v0.2.3
1 parent 9834b10 commit 44fe521

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ And you don't need to create Java objects (or POJO-s) for any of the payloads th
5252
| [`responseHeaders`](#responseheaders) | [`responseStatus`](#responsestatus) | [`responseTime`](#responsetime)
5353
**Reusable Functions** | [`call`](#call) | [`karate` object](#the-karate-object)
5454
**Tips and Tricks** | [Embedded Expressions](#embedded-expressions) | [GraphQL RegEx Example](#graphql--regex-replacement-example) | [Multi-line Comments](#multi-line-comments) | [Cucumber Tags](#cucumber-tags)
55-
| [Data Driven Tests](#data-driven-tests) | [Auth](#sign-in-example) / [Headers](#http-basic-authentication-example) | [Ignore / Vallidate](#ignore-or-validate) | [Examples and Demos](karate-demo)
55+
| [Data Driven Tests](#data-driven-tests) | [Auth](#sign-in-example) / [Headers](#http-basic-authentication-example) | [Ignore / Validate](#ignore-or-validate) | [Examples and Demos](karate-demo)
5656

5757
# Features
5858
* Java knowledge is not required to write tests
@@ -172,7 +172,7 @@ This is all that you need within your `<dependencies>`:
172172
<dependency>
173173
<groupId>com.intuit.karate</groupId>
174174
<artifactId>karate-junit4</artifactId>
175-
<version>0.2.2</version>
175+
<version>0.2.3</version>
176176
<scope>test</scope>
177177
</dependency>
178178
```
@@ -197,7 +197,7 @@ You can replace the values of 'com.mycompany' and 'myproject' as per your needs.
197197
mvn archetype:generate \
198198
-DarchetypeGroupId=com.intuit.karate \
199199
-DarchetypeArtifactId=karate-archetype \
200-
-DarchetypeVersion=0.2.2 \
200+
-DarchetypeVersion=0.2.3 \
201201
-DgroupId=com.mycompany \
202202
-DartifactId=myproject
203203
```

karate-archetype/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>0.2.3-SNAPSHOT</version>
8+
<version>0.2.3</version>
99
</parent>
1010
<artifactId>karate-archetype</artifactId>
1111
<packaging>jar</packaging>

karate-archetype/src/main/resources/archetype-resources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.intuit.karate</groupId>
1919
<artifactId>karate-junit4</artifactId>
20-
<version>0.2.2</version>
20+
<version>0.2.3</version>
2121
<scope>test</scope>
2222
</dependency>
2323
</dependencies>

karate-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>0.2.3-SNAPSHOT</version>
8+
<version>0.2.3</version>
99
</parent>
1010
<artifactId>karate-core</artifactId>
1111
<packaging>jar</packaging>

karate-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ as well as demonstrate various Karate features and best-practices.
44

55
| Example | Demonstrates
66
----------| --------
7-
[`greeting.feature`](src/test/java/demo/greeting/greeting.feature) | Simple GET and multiple scenarios in a test
7+
[`greeting.feature`](src/test/java/demo/greeting/greeting.feature) | Simple GET requests and multiple scenarios in a test.
88
[`cats.feature`](src/test/java/demo/cats/cats.feature) | Great example of [embedded-expressions](https://github.com/intuit/karate#embedded-expressions) (or JSON / XML templating). Also shows how to set the `Accept` header for getting XML from the server.
99
[`kittens.feature`](src/test/java/demo/cats/kittens.feature) | Reading a complex payload expected response [from a file](https://github.com/intuit/karate#reading-files). You can do the same for request payloads as well. Observe how [JSON templating](https://github.com/intuit/karate#embedded-expressions) makes creating dynamic JSON super-easy, look at [line #24](src/test/java/demo/cats/kittens.feature#L24) for example.
1010
[`upload.feature`](src/test/java/demo/upload/upload.feature) | Multi-part file-upload example, as well as comparing the binary content of a download. Also shows how to assert for expected response headers.

karate-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>0.2.3-SNAPSHOT</version>
8+
<version>0.2.3</version>
99
</parent>
1010

1111
<artifactId>karate-demo</artifactId>

karate-junit4/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>0.2.3-SNAPSHOT</version>
8+
<version>0.2.3</version>
99
</parent>
1010
<artifactId>karate-junit4</artifactId>
1111
<packaging>jar</packaging>

karate-testng/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.intuit.karate</groupId>
77
<artifactId>karate-parent</artifactId>
8-
<version>0.2.3-SNAPSHOT</version>
8+
<version>0.2.3</version>
99
</parent>
1010
<artifactId>karate-testng</artifactId>
1111
<packaging>jar</packaging>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.intuit.karate</groupId>
66
<artifactId>karate-parent</artifactId>
7-
<version>0.2.3-SNAPSHOT</version>
7+
<version>0.2.3</version>
88
<packaging>pom</packaging>
99

1010
<name>${project.artifactId}</name>

0 commit comments

Comments
 (0)