Skip to content

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sethobey-stripe committed Oct 3, 2022
1 parent d170a1f commit b8632ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.0.0] - 2022-09-30
- Adds PHP 8.x support and drops support for PHP <= 7.x

## [1.10.4] - 2020-10-06
- Support Guzzle version 7 in composer.json.

Expand Down Expand Up @@ -109,7 +112,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

- Initial release.

[Unreleased]: https://github.com/taxjar/taxjar-php/compare/v1.10.4...HEAD
[Unreleased]: https://github.com/taxjar/taxjar-php/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/taxjar/taxjar-php/compare/v1.10.4...v2.0.0
[1.10.4]: https://github.com/taxjar/taxjar-php/compare/v1.10.3...v1.10.4
[1.10.3]: https://github.com/taxjar/taxjar-php/compare/v1.10.2...v1.10.3
[1.10.2]: https://github.com/taxjar/taxjar-php/compare/v1.10.1...v1.10.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ composer require taxjar/taxjar-php
```json
{
"require": {
"taxjar/taxjar-php": "^1.10"
"taxjar/taxjar-php": "^2.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion lib/TaxJar.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class TaxJar
{
const VERSION = '1.10.4';
const VERSION = '2.0.0';
const DEFAULT_API_URL = 'https://api.taxjar.com';
const SANDBOX_API_URL = 'https://api.sandbox.taxjar.com';
const API_VERSION = 'v2';
Expand Down

0 comments on commit b8632ab

Please sign in to comment.