diff --git a/README.md b/README.md
index 1b76e71..f161b56 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Flow Persistence [![License](http://img.shields.io/badge/license-MIT-lightgrey.svg?style=flat)][License] [![Flattr this](http://img.shields.io/badge/flattr-donate-lightgrey.svg?style=flat)][Donate] [![Build Status](http://img.shields.io/travis/flow/persistence/develop.svg?style=flat)](https://travis-ci.org/flow/persistence) [![Coverage Status](http://img.shields.io/coveralls/flow/persistence/develop.svg?style=flat)](https://coveralls.io/r/flow/persistence)
-Flexible serialization and configuration library.
+Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.
## Getting Started
* [Examples and code snippets](https://github.com/flow/examples/tree/master/persistence)
@@ -52,7 +52,7 @@ If you're using [Maven](https://maven.apache.org/download.html) to manage projec
com.flowpowered
flow-persistence
- 1.0.0-SNAPSHOT
+ 1.0.0
If you're using [Gradle](https://www.gradle.org/) to manage project dependencies, simply include the following in your `build.gradle` file:
@@ -61,7 +61,7 @@ If you're using [Gradle](https://www.gradle.org/) to manage project dependencies
mavenCentral()
}
dependencies {
- compile 'com.flowpowered:flow-persistence:1.0.0-SNAPSHOT'
+ compile 'com.flowpowered:flow-persistence:1.0.0'
}
If you'd prefer to manually import the latest .jar file, you can get it [here](https://github.com/flow/persistence/releases).
diff --git a/build.gradle b/build.gradle
index a48af5b..f492877 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,11 +13,11 @@ apply plugin: 'signing'
ext.projectName = 'Flow Persistence'
group = 'com.flowpowered'
archivesBaseName = 'flow-persistence'
-version = '1.0.0-SNAPSHOT'
+version = '1.0.0'
ext.packaging = 'jar'
ext.inceptionYear = '2013'
ext.url = 'https://flowpowered.com/persistence'
-ext.description = 'Flexible serialization and configuration library for the Flow collection.'
+ext.description = 'Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.'
// Organization information
ext.organization = 'Flow Powered'
diff --git a/pom.xml b/pom.xml
index 6726cb6..58850fb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,11 +6,11 @@
Flow Persistence
com.flowpowered
flow-persistence
- 1.0.0-SNAPSHOT
+ 1.0.0
jar
2013
https://flowpowered.com/persistence
- Flexible serialization and configuration library for the Flow collection.
+ Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.