Skip to content

Commit

Permalink
Release version 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zml2008 committed Apr 6, 2015
1 parent 1e396aa commit cd6b63e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Make sure Maven is installed and from the project's directory (the root of this
<dependency>
<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-yaml</artifactId>
<version>1.0</version> <!-- Update this with the most recent version -->
<version>1.1</version> <!-- Update this with the most recent version -->
</dependency>
```
This dependency statement is for the yaml format implementation. Other formats managed in this repository use the same group id and versioning.
Expand Down
2 changes: 1 addition & 1 deletion configurate-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1</version>
</parent>

<artifactId>configurate-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion configurate-gson/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion configurate-hocon/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion configurate-json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion configurate-yaml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>ninja.leaping.configurate</groupId>
<artifactId>configurate-parent</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.1</version>
<packaging>pom</packaging>
<name>Configurate Parent</name>
<description>A simple configuration library for Java applications that can handle a variety of formats and
Expand Down

0 comments on commit cd6b63e

Please sign in to comment.