Skip to content

Commit 4cab7d0

Browse files
committed
Merge pull request #4 from flow/release/1.0.0
Update version to 1.0.0 for release
2 parents 9db464a + ca5ec47 commit 4cab7d0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 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)
22

3-
Flexible serialization and configuration library.
3+
Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.
44

55
## Getting Started
66
* [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
5252
<dependency>
5353
<groupId>com.flowpowered</groupId>
5454
<artifactId>flow-persistence</artifactId>
55-
<version>1.0.0-SNAPSHOT</version>
55+
<version>1.0.0</version>
5656
</dependency>
5757

5858
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
6161
mavenCentral()
6262
}
6363
dependencies {
64-
compile 'com.flowpowered:flow-persistence:1.0.0-SNAPSHOT'
64+
compile 'com.flowpowered:flow-persistence:1.0.0'
6565
}
6666

6767
If you'd prefer to manually import the latest .jar file, you can get it [here](https://github.com/flow/persistence/releases).

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ apply plugin: 'signing'
1313
ext.projectName = 'Flow Persistence'
1414
group = 'com.flowpowered'
1515
archivesBaseName = 'flow-persistence'
16-
version = '1.0.0-SNAPSHOT'
16+
version = '1.0.0'
1717
ext.packaging = 'jar'
1818
ext.inceptionYear = '2013'
1919
ext.url = 'https://flowpowered.com/persistence'
20-
ext.description = 'Flexible serialization and configuration library for the Flow collection.'
20+
ext.description = 'Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.'
2121

2222
// Organization information
2323
ext.organization = 'Flow Powered'

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<name>Flow Persistence</name>
77
<groupId>com.flowpowered</groupId>
88
<artifactId>flow-persistence</artifactId>
9-
<version>1.0.0-SNAPSHOT</version>
9+
<version>1.0.0</version>
1010
<packaging>jar</packaging>
1111
<inceptionYear>2013</inceptionYear>
1212
<url>https://flowpowered.com/persistence</url>
13-
<description>Flexible serialization and configuration library for the Flow collection.</description>
13+
<description>Flexible serialization and configuration library supporting multiple file formats, default values for unspecified fields, and injection of values into annotated Java fields.</description>
1414

1515
<!-- Parent information -->
1616
<parent>

0 commit comments

Comments
 (0)