Skip to content

Commit b8169cc

Browse files
authored
Merge pull request #7 from EasyPost/v0.3.0
chore: prepare v0.3.0 for release
2 parents 721ec47 + 21e573d commit b8169cc

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# CHANGELOG
22

3-
## Next Release
3+
## v0.3.0 (2022-06-13)
4+
45
- Improvements to censoring
56
- Ability to define censored elements individually, with per-element case sensitivity
67
- Improvements to matching

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This can be useful for speeding up your test suite, or for running your tests on
1212

1313
## How to use EasyVCR
1414

15-
#### Step 1.
15+
### Step 1
1616

1717
Run your test suite locally against a real HTTP endpoint in recording mode
1818

@@ -45,7 +45,7 @@ public class Example {
4545

4646
Real HTTP calls will be made and recorded to the cassette file.
4747

48-
#### Step 2.
48+
### Step 2
4949

5050
Switch to replay mode:
5151

@@ -73,6 +73,7 @@ public class Example {
7373
}
7474
}
7575
```
76+
7677
Now when tests are run, no real HTTP calls will be made. Instead, the HTTP responses will be replayed from the cassette file.
7778

7879
### Available modes

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.3.0

pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
54
<modelVersion>4.0.0</modelVersion>
65

76
<groupId>com.easypost</groupId>
87
<artifactId>easyvcr</artifactId>
98

10-
<version>0.2.0</version>
9+
<version>0.3.0</version>
1110
<packaging>jar</packaging>
1211

1312
<name>com.easypost:easyvcr</name>
@@ -255,5 +254,5 @@
255254
</plugin>
256255
</plugins>
257256
</build>
258-
257+
259258
</project>

0 commit comments

Comments
 (0)