diff --git a/CHANGELOG.md b/CHANGELOG.md
index 62186acb5..e790c44fa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+1.1
+---
+- core: Fix jdk6 compatibility
+- core: Add equals, hashCode, and toString to node objects
+- json: Bump jackson dependency to 2.5.2
+- json: Make pretty printing more flexible with new methods on Builder
+
1.0.1
-----
- Handle objects with null fields being serialized
diff --git a/README.md b/README.md
index 1e15f60a9..0048527fd 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Make sure Maven is installed and from the project's directory (the root of this
ninja.leaping.configurate
configurate-yaml
- 1.0
+ 1.1
```
This dependency statement is for the yaml format implementation. Other formats managed in this repository use the same group id and versioning.
diff --git a/configurate-core/pom.xml b/configurate-core/pom.xml
index 842b83911..66a898853 100644
--- a/configurate-core/pom.xml
+++ b/configurate-core/pom.xml
@@ -22,7 +22,7 @@
ninja.leaping.configurate
configurate-parent
- 1.0.2-SNAPSHOT
+ 1.1
configurate-core
diff --git a/configurate-gson/pom.xml b/configurate-gson/pom.xml
index d20d83f11..aaffdde03 100644
--- a/configurate-gson/pom.xml
+++ b/configurate-gson/pom.xml
@@ -23,7 +23,7 @@
ninja.leaping.configurate
configurate-parent
- 1.0.2-SNAPSHOT
+ 1.1
4.0.0
diff --git a/configurate-hocon/pom.xml b/configurate-hocon/pom.xml
index 44470eeaa..86ad7592c 100644
--- a/configurate-hocon/pom.xml
+++ b/configurate-hocon/pom.xml
@@ -23,7 +23,7 @@
ninja.leaping.configurate
configurate-parent
- 1.0.2-SNAPSHOT
+ 1.1
4.0.0
diff --git a/configurate-json/pom.xml b/configurate-json/pom.xml
index a54aba5c3..691bb3158 100644
--- a/configurate-json/pom.xml
+++ b/configurate-json/pom.xml
@@ -23,7 +23,7 @@
ninja.leaping.configurate
configurate-parent
- 1.0.2-SNAPSHOT
+ 1.1
4.0.0
diff --git a/configurate-yaml/pom.xml b/configurate-yaml/pom.xml
index fa0749060..5c81fcdb1 100644
--- a/configurate-yaml/pom.xml
+++ b/configurate-yaml/pom.xml
@@ -23,7 +23,7 @@
ninja.leaping.configurate
configurate-parent
- 1.0.2-SNAPSHOT
+ 1.1
4.0.0
diff --git a/pom.xml b/pom.xml
index 7e0381d70..e701f8b37 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
ninja.leaping.configurate
configurate-parent
- 1.0.2-SNAPSHOT
+ 1.1
pom
Configurate Parent
A simple configuration library for Java applications that can handle a variety of formats and