Skip to content

Commit eb41c64

Browse files
committed
release v0.2.1 - with the '$' support in validation expressions
1 parent 4225f7f commit eb41c64

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ This is all that you need within your `<dependencies>`:
166166
<dependency>
167167
<groupId>com.intuit.karate</groupId>
168168
<artifactId>karate-junit4</artifactId>
169-
<version>0.2.0</version>
169+
<version>0.2.1</version>
170170
<scope>test</scope>
171171
</dependency>
172172
```
@@ -190,7 +190,7 @@ You can replace the values of 'com.mycompany' and 'myproject' as per your needs.
190190
mvn archetype:generate \
191191
-DarchetypeGroupId=com.intuit.karate \
192192
-DarchetypeArtifactId=karate-archetype \
193-
-DarchetypeVersion=0.2.0 \
193+
-DarchetypeVersion=0.2.1 \
194194
-DgroupId=com.mycompany \
195195
-DartifactId=myproject
196196
```
@@ -1128,7 +1128,7 @@ validate all your domain objects.
11281128

11291129
You can actually refer to any JsonPath on the document via `$` and perform cross-field or conditional
11301130
validations ! This example uses the [`match contains`](#match-contains) syntax, and situations where
1131-
this comes in useful will be apparent when we discuss [`match each`](#match-each)
1131+
this comes in useful will be apparent when we discuss [`match each`](#match-each).
11321132
```cucumber
11331133
Given def temperature = { celsius: 100, fahrenheit: 212 }
11341134
Then match temperature contains { fahrenheit: '#? _ == $.celsius * 1.8 + 32' }

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.0</version>
8+
<version>0.2.1</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.0</version>
20+
<version>0.2.1</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.0</version>
8+
<version>0.2.1</version>
99
</parent>
1010
<artifactId>karate-core</artifactId>
1111
<packaging>jar</packaging>

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.0</version>
8+
<version>0.2.1</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.0</version>
8+
<version>0.2.1</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.0</version>
7+
<version>0.2.1</version>
88
<packaging>pom</packaging>
99

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

0 commit comments

Comments
 (0)