From 641e9aec4fecf4b8e49878cb0353e68aeb86b4f1 Mon Sep 17 00:00:00 2001 From: Dallen Dallton Date: Wed, 26 Jan 2022 14:04:29 -0700 Subject: [PATCH] Version 5.0.2 --- CHANGELOG.md | 6 +++++- README.md | 4 ++-- pom.xml | 2 +- src/main/java/com/taxjar/Taxjar.java | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6907b0e..7e7fca9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index b63ac0d..fabf76f 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Add the following dependency to your project's `pom.xml` file: com.taxjar taxjar-java - 5.0.1 + 5.0.2 ``` @@ -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 diff --git a/pom.xml b/pom.xml index 9ff65a2..106dab7 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.taxjar taxjar-java - 5.0.1 + 5.0.2 jar taxjar-java diff --git a/src/main/java/com/taxjar/Taxjar.java b/src/main/java/com/taxjar/Taxjar.java index 5ffab41..1507e7e 100644 --- a/src/main/java/com/taxjar/Taxjar.java +++ b/src/main/java/com/taxjar/Taxjar.java @@ -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;