diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index 7aa08577cc..afd44efc61 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -1,5 +1,20 @@ -# 0.30.2 +# 0.31.1 +Infrastructure: +* Linting and formatting with [kotliner](https://github.com/jeremymailen/kotlinter-gradle) gradle plugin added by [jnfeinstein](https://github.com/jnfeinstein) + +Features: +* TIME data type support in `exposed-java-time` module ([224](https://github.com/JetBrains/Exposed/issues/224)). Improvement provided by [vorotynsky](https://github.com/vorotynsky) and [Jhyub](https://github.com/Jhyub) +* inList with Pairs and Triples support ([643](https://github.com/JetBrains/Exposed/issues/643)) + Bug Fixes: +* Proper support for Sequences as default value or autoincrement ([492](https://github.com/JetBrains/Exposed/issues/492), [1164](https://github.com/JetBrains/Exposed/issues/1164), [1209](https://github.com/JetBrains/Exposed/issues/1209)) +* [SQL Server] Proper support for 'DEFAULT' keyword ([1207](https://github.com/JetBrains/Exposed/issues/1207)). PR by [ahayanm001](https://github.com/ahayanm001) + +Performance: +* Lower footprint on creating ResultRow from ResultSet. Fix was inspired by [maio](https://github.com/maio) + +# 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)) diff --git a/exposed-spring-boot-starter/README.md b/exposed-spring-boot-starter/README.md index 3e06061d11..afe617faea 100644 --- a/exposed-spring-boot-starter/README.md +++ b/exposed-spring-boot-starter/README.md @@ -18,7 +18,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-spring-boot-starter</artifactId> - <version>0.30.1</version> + <version>0.31.1</version> </dependency> </dependencies> ``` @@ -28,7 +28,7 @@ repositories { mavenCentral() } dependencies { - implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.30.2' + implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.31.1' } ``` diff --git a/gradle.properties b/gradle.properties index ebdd412bc0..8fa560d2cc 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.2 +version=0.31.1 dialect=none