Skip to content

Commit

Permalink
Update version to beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Mar 14, 2016
1 parent 247f2f3 commit 6a2e843
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -160,7 +160,7 @@ and updates (writing):
```java
int rows = data.update(Person.class)
.set(Person.ABOUT, "student")
.where(Person.AGE.lt(21)).get();
.where(Person.AGE.lt(21)).get().value();
```

Features
Expand Down Expand Up @@ -263,9 +263,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.0.0-beta4'
compile 'io.requery:requery-android:1.0.0-beta4' // for android
apt 'io.requery:requery-processor:1.0.0-beta4' // use an APT plugin
compile 'io.requery:requery:1.0.0-beta5'
compile 'io.requery:requery-android:1.0.0-beta5' // for android
apt 'io.requery:requery-processor:1.0.0-beta5' // use an APT plugin
}
```

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

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

Properties properties = new Properties()
Expand Down

0 comments on commit 6a2e843

Please sign in to comment.