diff --git a/CHANGELOG.md b/CHANGELOG.md
index dbd95f68..562acd76 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
#### Changed
- consider JavaBeans API specification in getter naming convention for field names with the second character being uppercase (e.g., a field `xIndex` has the getter `getxIndex()` according to the specification)
-- allow for field names starting with `is` to have getter of the same name (e.g., a field `isBool` may have the getter `isBool()`)
+- allow for field names starting with `is` to have a getter of the same name (e.g., a field `isBool` may have the getter `isBool()`)
- the default `ObjectMapper` instance now includes the enabled `SerializationFeature.INDENT_OUTPUT`
### `jsonschema-module-jackson`
@@ -27,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
#### Fixed
- avoid rounding error when taking over the value from `@Schema(multipleOf)`
-### `jsonschema-naven-plugin`
+### `jsonschema-maven-plugin`
### Added
- support custom configuration `Module` being loaded from test classpath elements
diff --git a/jsonschema-examples/pom.xml b/jsonschema-examples/pom.xml
index aeab962a..9feb61ad 100644
--- a/jsonschema-examples/pom.xml
+++ b/jsonschema-examples/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-examples
diff --git a/jsonschema-generator-bom/pom.xml b/jsonschema-generator-bom/pom.xml
index f855ae72..5c072b12 100644
--- a/jsonschema-generator-bom/pom.xml
+++ b/jsonschema-generator-bom/pom.xml
@@ -8,7 +8,7 @@
com.github.victools
jsonschema-generator-bom
- 4.32.0
+ 4.32.1-SNAPSHOT
pom
@@ -26,7 +26,7 @@
scm:git:https://github.com/victools/jsonschema-generator.git
scm:git:https://github.com/victools/jsonschema-generator.git
https://github.com/victools/jsonschema-generator
- v4.32.0
+ HEAD
diff --git a/jsonschema-generator-parent/pom.xml b/jsonschema-generator-parent/pom.xml
index 2c6d3d6c..8b849a86 100644
--- a/jsonschema-generator-parent/pom.xml
+++ b/jsonschema-generator-parent/pom.xml
@@ -4,7 +4,7 @@
com.github.victools
jsonschema-generator-bom
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-bom/pom.xml
jsonschema-generator-parent
diff --git a/jsonschema-generator/pom.xml b/jsonschema-generator/pom.xml
index a9fddd1d..1e486635 100644
--- a/jsonschema-generator/pom.xml
+++ b/jsonschema-generator/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-generator
diff --git a/jsonschema-maven-plugin/pom.xml b/jsonschema-maven-plugin/pom.xml
index 5d44f470..5e053557 100644
--- a/jsonschema-maven-plugin/pom.xml
+++ b/jsonschema-maven-plugin/pom.xml
@@ -6,7 +6,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-maven-plugin
diff --git a/jsonschema-module-jackson/pom.xml b/jsonschema-module-jackson/pom.xml
index a54b5f61..d89020b1 100644
--- a/jsonschema-module-jackson/pom.xml
+++ b/jsonschema-module-jackson/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-module-jackson
diff --git a/jsonschema-module-jakarta-validation/pom.xml b/jsonschema-module-jakarta-validation/pom.xml
index b4cd1ebd..d74b4982 100644
--- a/jsonschema-module-jakarta-validation/pom.xml
+++ b/jsonschema-module-jakarta-validation/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-module-jakarta-validation
diff --git a/jsonschema-module-javax-validation/pom.xml b/jsonschema-module-javax-validation/pom.xml
index a10ab287..877eb9af 100644
--- a/jsonschema-module-javax-validation/pom.xml
+++ b/jsonschema-module-javax-validation/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-module-javax-validation
diff --git a/jsonschema-module-swagger-1.5/pom.xml b/jsonschema-module-swagger-1.5/pom.xml
index 977bcaa1..3886533f 100644
--- a/jsonschema-module-swagger-1.5/pom.xml
+++ b/jsonschema-module-swagger-1.5/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-module-swagger-1.5
diff --git a/jsonschema-module-swagger-2/pom.xml b/jsonschema-module-swagger-2/pom.xml
index 1adc8be9..b0591f09 100644
--- a/jsonschema-module-swagger-2/pom.xml
+++ b/jsonschema-module-swagger-2/pom.xml
@@ -5,7 +5,7 @@
com.github.victools
jsonschema-generator-parent
- 4.32.0
+ 4.32.1-SNAPSHOT
../jsonschema-generator-parent/pom.xml
jsonschema-module-swagger-2
diff --git a/pom.xml b/pom.xml
index 9248861b..2f1342c3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
com.github.victools
jsonschema-generator-reactor
- 4.32.0
+ 4.32.1-SNAPSHOT
pom
Java JSON Schema Generator (Reactor)