diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index 036bd0052e..7aa08577cc 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -1,3 +1,11 @@ +# 0.30.2 +Bug Fixes: +* Null Durations Convert to 0 ([1196](https://github.com/JetBrains/Exposed/issues/1196)) +* Bugs in ISqlExpressionBuilder.coalesce() affecting return value type ([1199](https://github.com/JetBrains/Exposed/issues/1199)) +* SELECT is called twice if the `with` method called on a Query ([1202](https://github.com/JetBrains/Exposed/issues/1202)) +* Early versions of MySQL Connector don't work with Exposed ([1203](https://github.com/JetBrains/Exposed/issues/1203)). PR by [MeowRay](https://github.com/MeowRay) +* `Query.prepareSQL(QueryBuilder)` is made public to allow preparing raw SQLs ([1206](https://github.com/JetBrains/Exposed/issues/1206) + # 0.30.1 Infrastructure: * Artifact publishing moved from jcenter/Bintray to Maven Central diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index 5ead21d0ca..60d94b27ea 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -1,6 +1,5 @@ # Exposed Roadmap -* Refactor test to cover different jdbc-drivers/database versions (with docker-compose or test containers) * Support Repository based DAO (https://github.com/JetBrains/Exposed/issues/24) * Move from jdbc drivers to something more asynchronous ([R2DBC](https://r2dbc.io/)) * Support Kotlin Native diff --git a/exposed-spring-boot-starter/README.md b/exposed-spring-boot-starter/README.md index 1de5dd78f7..3e06061d11 100644 --- a/exposed-spring-boot-starter/README.md +++ b/exposed-spring-boot-starter/README.md @@ -28,7 +28,7 @@ repositories { mavenCentral() } dependencies { - implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.30.1' + implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.30.2' } ``` diff --git a/gradle.properties b/gradle.properties index 033c248734..ebdd412bc0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,5 +2,5 @@ org.gradle.parallel=false org.gradle.jvmargs=-Dfile.encoding=UTF-8 group=org.jetbrains.exposed -version=0.30.1 +version=0.30.2 dialect=none