diff --git a/CHANGES b/CHANGES
index 4b8d801..2a11b37 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,16 @@
FusionAuth JWT Changes
+Changes in 5.3.2
+
+ * Correct the padding when extracting the r and s components from a DER encoded public key.
+ This bug may cause some signatures to be invalid when using ES512.
+
+ Resolves https://github.com/FusionAuth/fusionauth-jwt/issues/57
+
+Changes in 5.3.1
+
+ * Upgraded Jackson Core to 2.15.2.
+
Changes in 5.3.0
* Add support for providing your own JWT header. This will enable you to customize the header property order for example.
diff --git a/README.md b/README.md
index b28edc8..6b9e26c 100644
--- a/README.md
+++ b/README.md
@@ -41,23 +41,23 @@ We are very interested in compensating anyone that can identify a security relat
io.fusionauth
fusionauth-jwt
- 5.3.1
+ 5.3.2
```
### Gradle
```groovy
-implementation 'io.fusionauth:fusionauth-jwt:5.3.1'
+implementation 'io.fusionauth:fusionauth-jwt:5.3.2'
```
### Gradle Kotlin
```kotlin
-implementation("io.fusionauth:fusionauth-jwt:5.3.1")
+implementation("io.fusionauth:fusionauth-jwt:5.3.2")
```
### Savant
```groovy
-dependency(id: "io.fusionauth:fusionauth-jwt:5.3.1")
+dependency(id: "io.fusionauth:fusionauth-jwt:5.3.2")
```
For others see [https://search.maven.org](https://search.maven.org/artifact/io.fusionauth/fusionauth-jwt/4.0.1/jar).
diff --git a/build.savant b/build.savant
index f5c7b9e..92d52d3 100644
--- a/build.savant
+++ b/build.savant
@@ -16,7 +16,7 @@
jacksonVersion = "2.15.2"
-project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.1", licenses: ["ApacheV2_0"]) {
+project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.2", licenses: ["ApacheV2_0"]) {
workflow {
fetch {
diff --git a/pom.xml b/pom.xml
index 8f135ff..32c2f1c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
io.fusionauth
fusionauth-jwt
- 5.3.1
+ 5.3.2
jar
FusionAuth JWT