Skip to content

Commit

Permalink
Merge pull request #37 from taxjar/Version-5.0.3
Browse files Browse the repository at this point in the history
Version 5.0.3
  • Loading branch information
dallendalton authored Mar 8, 2022
2 parents 9b2f4a7 + 785bf5e commit 35d0cc1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 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]

## [5.0.3] - 2022-03-08
- Correctly handle 500 errors

## [5.0.2] - 2022-01-26
- Add Gson dependency to patch vulnerability

Expand Down Expand Up @@ -55,7 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [1.0.0] - 2017-07-12
- Initial release

[Unreleased]: https://github.com/taxjar/taxjar-java/compare/v5.0.2...HEAD
[Unreleased]: https://github.com/taxjar/taxjar-java/compare/v5.0.3...HEAD
[5.0.3]: https://github.com/taxjar/taxjar-java/compare/v5.0.2...v5.0.3
[5.0.2]: https://github.com/taxjar/taxjar-java/compare/v5.0.1...v5.0.2
[5.0.1]: https://github.com/taxjar/taxjar-java/compare/v5.0.0...v5.0.1
[5.0.0]: https://github.com/taxjar/taxjar-java/compare/v4.0.0...v5.0.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Add the following dependency to your project's `pom.xml` file:
<dependency>
<groupId>com.taxjar</groupId>
<artifactId>taxjar-java</artifactId>
<version>5.0.2</version>
<version>5.0.3</version>
</dependency>
```

Expand All @@ -41,7 +41,7 @@ Add the following dependency to your project's `pom.xml` file:
Add the following dependency to your project's build file:

```
compile "com.taxjar:taxjar-java:5.0.2"
compile "com.taxjar:taxjar-java:5.0.3"
```

### Manual Installation
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.taxjar</groupId>
<artifactId>taxjar-java</artifactId>
<version>5.0.2</version>
<version>5.0.3</version>
<packaging>jar</packaging>

<name>taxjar-java</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/taxjar/Taxjar.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class Taxjar {
public static final String DEFAULT_API_URL = "https://api.taxjar.com";
public static final String SANDBOX_API_URL = "https://api.sandbox.taxjar.com";
public static final String API_VERSION = "v2";
public static final String VERSION = "5.0.2";
public static final String VERSION = "5.0.3";
protected Endpoints apiService;
protected String apiUrl;
protected String apiToken;
Expand Down

0 comments on commit 35d0cc1

Please sign in to comment.