Skip to content

Commit

Permalink
Merge pull request #4 from flow/release/1.0.0
Browse files Browse the repository at this point in the history
Update version to 1.0.0 for release
  • Loading branch information
lukespragg committed Sep 19, 2015
2 parents 9db464a + ca5ec47 commit 4cab7d0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -52,7 +52,7 @@ If you're using [Maven](https://maven.apache.org/download.html) to manage projec
<dependency>
<groupId>com.flowpowered</groupId>
<artifactId>flow-persistence</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>

If you're using [Gradle](https://www.gradle.org/) to manage project dependencies, simply include the following in your `build.gradle` file:
Expand All @@ -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).
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<name>Flow Persistence</name>
<groupId>com.flowpowered</groupId>
<artifactId>flow-persistence</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>
<inceptionYear>2013</inceptionYear>
<url>https://flowpowered.com/persistence</url>
<description>Flexible serialization and configuration library for the Flow collection.</description>
<description>Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.</description>

<!-- Parent information -->
<parent>
Expand Down

0 comments on commit 4cab7d0

Please sign in to comment.