Skip to content

Commit

Permalink
Update version to beta15
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Apr 17, 2016
1 parent d9ec936 commit e3257fb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,14 @@
Change Log
==========

## 1.0.0-beta15

- Fix generated SQL incorrect in some non-US locales
- Fix several issues when using immutable types
- Fix RxJava type changes not serialized
- Fix Android library publish
- Fix Android table not existing error on database first created w/ WAL mode

## 1.0.0-beta14

- Support for generating mappings for final/non-extendable classes
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -71,7 +71,7 @@ abstract class Person {
return new AutoValue_Person.Builder();
}

@Id @GeneratedValue
@Key
abstract int getId();

abstract String getName();
Expand Down Expand Up @@ -282,9 +282,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.0.0-beta14'
compile 'io.requery:requery-android:1.0.0-beta14' // for android
apt 'io.requery:requery-processor:1.0.0-beta14' // use an APT plugin
compile 'io.requery:requery:1.0.0-beta15'
compile 'io.requery:requery-android:1.0.0-beta15' // for android
apt 'io.requery:requery-processor:1.0.0-beta15' // use an APT plugin
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -26,7 +26,7 @@ idea {
}

group = 'io.requery'
version = '1.0.0-beta14'
version = '1.0.0-beta15'
description = 'A light but powerful object mapper and SQL generator for Java/Android'

Properties properties = new Properties()
Expand Down

0 comments on commit e3257fb

Please sign in to comment.