Skip to content

Commit f7082ee

Browse files
committed
Exposed 0.39.2 release
1 parent 920428b commit f7082ee

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

docs/ChangeLog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# 0.39.2
2+
Infrastructure:
3+
* All modules built with Kotlin 1.6 as a target
4+
5+
Libs updates:
6+
* h2-database 2.1.214
7+
* MaridDB driver 2.7.6 and 3.0.6
8+
* MySQL driver 8.0.30
9+
* PostgreSQL driver 42.4.0
10+
* SQLServer driver 9.4.1.jre8
11+
* Java Money API 1.1
12+
* Spring Framework 5.3.22
13+
* Spring Boot 2.7.2
14+
* Spring Security Crypto 5.6.6
15+
16+
Bug Fixes:
17+
* Converting of `LocalDateTime` values to `Instant` supported for `JavaInstantColumnType` by [hfazai](https://github.com/hfazai)
18+
* [Oracle] Better handling of bool column in queries ([#1540](https://github.com/JetBrains/Exposed/issues/1540)). PR by [maio](https://github.com/maio)
19+
* [Oracle] Proper resolving tables with schemas
20+
121
# 0.39.1
222
Infrastructure:
323
* Kotlin 1.7.10

exposed-bom/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Bill of Materials for all Exposed modules
1717
<dependency>
1818
<groupId>org.jetbrains.exposed</groupId>
1919
<artifactId>exposed-bom</artifactId>
20-
<version>0.39.1</version>
20+
<version>0.39.2</version>
2121
<type>pom</type>
2222
<scope>import</scope>
2323
</dependency>
@@ -51,7 +51,7 @@ repositories {
5151
}
5252

5353
dependencies {
54-
implementation(platform("org.jetbrains.exposed:exposed-bom:0.39.1"))
54+
implementation(platform("org.jetbrains.exposed:exposed-bom:0.39.2"))
5555
implementation("org.jetbrains.exposed", "exposed-core")
5656
implementation("org.jetbrains.exposed", "exposed-dao")
5757
implementation("org.jetbrains.exposed", "exposed-jdbc")

exposed-spring-boot-starter/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je
1818
<dependency>
1919
<groupId>org.jetbrains.exposed</groupId>
2020
<artifactId>exposed-spring-boot-starter</artifactId>
21-
<version>0.39.1</version>
21+
<version>0.39.2</version>
2222
</dependency>
2323
</dependencies>
2424
```
@@ -28,7 +28,7 @@ repositories {
2828
mavenCentral()
2929
}
3030
dependencies {
31-
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.39.1'
31+
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.39.2'
3232
}
3333
```
3434

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ org.gradle.parallel=false
22
org.gradle.jvmargs=-Dfile.encoding=UTF-8
33
#
44
group=org.jetbrains.exposed
5-
version=0.39.2-SNAPSHOT
5+
version=0.39.2

0 commit comments

Comments
 (0)