Skip to content

Commit

Permalink
Merge pull request #34 from taxjar/Version-5.0.2
Browse files Browse the repository at this point in the history
Version 5.0.2
  • Loading branch information
dallendalton authored Jan 26, 2022
2 parents 33d9ed3 + 641e9ae commit 479ece9
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.2] - 2022-01-26
- Add Gson dependency to patch vulnerability

## [5.0.1] - 2021-10-18
- Fix API error response handling without `error`, `detail`, or `status` keys

Expand Down Expand Up @@ -52,7 +55,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.1...HEAD
[Unreleased]: https://github.com/taxjar/taxjar-java/compare/v5.0.2...HEAD
[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
[4.0.0]: https://github.com/taxjar/taxjar-java/compare/v3.3.0...v4.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.1</version>
<version>5.0.2</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.1"
compile "com.taxjar:taxjar-java:5.0.2"
```

### 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.1</version>
<version>5.0.2</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.1";
public static final String VERSION = "5.0.2";
protected Endpoints apiService;
protected String apiUrl;
protected String apiToken;
Expand Down

0 comments on commit 479ece9

Please sign in to comment.