Skip to content

Commit

Permalink
chore: prepare v4.0.0 for release (#113)
Browse files Browse the repository at this point in the history
* chore: prepare v4.0.0 for release

* fix: ignore `User-Agent` in VCR
  • Loading branch information
Justintime50 authored Oct 8, 2021
1 parent ecea4db commit fc1a048
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 44 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
## CHANGELOG

### NEXT RELEASE
### 4.0.0 2021-10-06

* JSON encodes POST bodies instead of form encoding them
* Adds TaxIdentifier support
* Corrects references of `[email protected]` to `[email protected]`
* Bumps patch versions of dependencies

### 3.6.0 2021-06-10

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.6.0
4.0.0
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
"EasyPost": "lib/"
}
},
"version": "3.6.0"
"version": "4.0.0"
}
76 changes: 38 additions & 38 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/EasyPost/EasyPost.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ abstract class EasyPost
/**
* @var string
*/
const VERSION = '3.6.0';
const VERSION = '4.0.0';

/**
* get the API key.
Expand Down
5 changes: 3 additions & 2 deletions test/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
VCRCleaner::enable(array(
'request' => array(
'ignoreHeaders' => array(
'Authorization',
'X-Client-User-Agent',
'Authorization', // Ignore credentials
'User-Agent', // Ignore varying version numbers between builds
'X-Client-User-Agent', // Ignore varying user agents between machines
),
),
));

0 comments on commit fc1a048

Please sign in to comment.