Skip to content

Commit

Permalink
Merge pull request #7 from EasyPost/v0.3.0
Browse files Browse the repository at this point in the history
chore: prepare v0.3.0 for release
  • Loading branch information
Justintime50 authored Jun 13, 2022
2 parents 721ec47 + 21e573d commit b8169cc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CHANGELOG

## Next Release
## v0.3.0 (2022-06-13)

- Improvements to censoring
- Ability to define censored elements individually, with per-element case sensitivity
- Improvements to matching
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ This can be useful for speeding up your test suite, or for running your tests on

## How to use EasyVCR

#### Step 1.
### Step 1

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

Expand Down Expand Up @@ -45,7 +45,7 @@ public class Example {

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

#### Step 2.
### Step 2

Switch to replay mode:

Expand Down Expand Up @@ -73,6 +73,7 @@ public class Example {
}
}
```

Now when tests are run, no real HTTP calls will be made. Instead, the HTTP responses will be replayed from the cassette file.

### Available modes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.3.0
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
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">
<modelVersion>4.0.0</modelVersion>

<groupId>com.easypost</groupId>
<artifactId>easyvcr</artifactId>

<version>0.2.0</version>
<version>0.3.0</version>
<packaging>jar</packaging>

<name>com.easypost:easyvcr</name>
Expand Down Expand Up @@ -255,5 +254,5 @@
</plugin>
</plugins>
</build>

</project>

0 comments on commit b8169cc

Please sign in to comment.