Skip to content

Commit

Permalink
Update version to rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
npurushe committed Jul 7, 2016
1 parent a4db439 commit 4500155
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.md
@@ -1,6 +1,6 @@
![requery](http://requery.github.io/logo.png)

A light but powerful object mapping and SQL generator for Java/Android with RxJava and Java 8 support.
A light but powerful object mapping and SQL generator for Java/Kotlin/Android with RxJava and Java 8 support.
Easily map to or create databases, perform queries and updates from any platform that uses Java.

[![Build Status](https://travis-ci.org/requery/requery.svg?branch=master)](https://travis-ci.org/requery/requery)
Expand Down Expand Up @@ -111,6 +111,14 @@ abstract class AbstractPerson {
}
```

**[Kotlin](https://kotlinlang.org/) Kotlin specific support using property references and infix functions:**

```kotlin
data {
val result = select(Person::class) where (Person::age gt 21) and (Person::name eq "Bob") limit 10
}
```

**Java 8 [streams](https://docs.oracle.com/javase/8/docs/api/java/util/stream/Stream.html):**

```java
Expand Down Expand Up @@ -282,9 +290,9 @@ repositories {
}
dependencies {
compile 'io.requery:requery:1.0.0-beta23'
compile 'io.requery:requery-android:1.0.0-beta23' // for android
apt 'io.requery:requery-processor:1.0.0-beta23' // use an APT plugin
compile 'io.requery:requery:1.0.0-rc1'
compile 'io.requery:requery-android:1.0.0-rc1' // for android
apt 'io.requery:requery-processor:1.0.0-rc1' // 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-beta23'
version = '1.0.0-rc1'
description = 'A light but powerful object mapper and SQL generator for Java/Android'

Properties properties = new Properties()
Expand Down
5 changes: 5 additions & 0 deletions requery-kotlin/build.gradle
Expand Up @@ -7,6 +7,7 @@ buildscript {
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.8"
}
}

Expand All @@ -17,3 +18,7 @@ dependencies {
compile project(':requery')
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

0 comments on commit 4500155

Please sign in to comment.