Skip to content

Commit

Permalink
Version up and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
julman99 committed Oct 11, 2015
1 parent 272cef9 commit 6376ec4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions README.md
Expand Up @@ -107,7 +107,9 @@ builder.dateSerializationPolicy(DateSerializationPolicy.unixTimeMillis);
//or
builder.dateSerializationPolicy(DateSerializationPolicy.unixTimeSeconds);
//or
builder.dateSerializationPolicy(DateSerializationPolicy.rfc3339);
builder.dateSerializationPolicy(DateSerializationPolicy.rfc3339); //date and time will be serialized
//or
builder.dateSerializationPolicy(DateSerializationPolicy.rfc3339Date); //only date portion will be serialized

```

Expand Down Expand Up @@ -227,6 +229,12 @@ Gson gson = gsonBuilder.create()

## Release notes

### 1.4.0

- Fixed a bug in which pre-processors could run multiple times when used in conjunction with TypeSelectors.
- Adds support for RFC3339 date (without the time portion). - thanks [@WonderCsabo](https://github.com/WonderCsabo)
- TypeSelectors will now be invoked also on sub-classes of the class they are registered for. thanks [@iwarapter](https://github.com/iwarapter)

### 1.3.1

- Fixed a ```NullPointerException``` that could happen when using the exclude by value feature (thanks [@joaocpsantos](https://github.com/joaocpsantos))
Expand Down Expand Up @@ -270,7 +278,7 @@ Add to your ```pom.xml```
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>1.3.1</version>
<version>1.4.0</version>
</dependency>
</dependencies>
```
Expand All @@ -280,7 +288,7 @@ Add to your ```build.gradle```

```groovy
dependencies {
compile 'io.gsonfire:gson-fire:1.3.1'
compile 'io.gsonfire:gson-fire:1.4.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>1.3.1</version>
<version>1.4.0</version>

<name>Gson on Fire!</name>
<description>
Expand Down

0 comments on commit 6376ec4

Please sign in to comment.