diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7e7fca9..31d36ea 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.3] - 2022-03-08
+- Correctly handle 500 errors
+
## [5.0.2] - 2022-01-26
- Add Gson dependency to patch vulnerability
@@ -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
diff --git a/README.md b/README.md
index fabf76f..1b641f2 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.2
+ 5.0.3
```
@@ -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
diff --git a/pom.xml b/pom.xml
index 106dab7..633d5d6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.taxjar
taxjar-java
- 5.0.2
+ 5.0.3
jar
taxjar-java
diff --git a/src/main/java/com/taxjar/Taxjar.java b/src/main/java/com/taxjar/Taxjar.java
index 1507e7e..92fce29 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.2";
+ public static final String VERSION = "5.0.3";
protected Endpoints apiService;
protected String apiUrl;
protected String apiToken;