Exposed 0.39.1 release

This commit is contained in:
Andrey.Tarashevskiy
2022-08-01 18:25:16 +03:00
parent d77776ca92
commit dc9eea845e
2 changed files with 18 additions and 18 deletions

View File

@@ -17,17 +17,17 @@
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-core</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-dao</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jdbc</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
</dependencies>
@@ -44,9 +44,9 @@ repositories {
mavenCentral()
}
dependencies {
implementation("org.jetbrains.exposed", "exposed-core", "0.38.2")
implementation("org.jetbrains.exposed", "exposed-dao", "0.38.2")
implementation("org.jetbrains.exposed", "exposed-jdbc", "0.38.2")
implementation("org.jetbrains.exposed", "exposed-core", "0.39.1")
implementation("org.jetbrains.exposed", "exposed-dao", "0.39.1")
implementation("org.jetbrains.exposed", "exposed-jdbc", "0.39.1")
}
```
@@ -64,7 +64,7 @@ dependencies {
And the version in your `gradle.properties`
```
exposedVersion=0.38.2
exposedVersion=0.39.1
```
- Note: There are another modules. Detailed information located in [[Modules Documentation|LibDocumentation]] section.

View File

@@ -76,27 +76,27 @@ Dependencies mapping listed bellow is similar (by functionality) to the previous
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-core</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-dao</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jdbc</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jodatime</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-java-time</artifactId>
<version>0.38.2</version>
<version>0.39.1</version>
</dependency>
</dependencies>
@@ -105,12 +105,12 @@ Dependencies mapping listed bellow is similar (by functionality) to the previous
#### Gradle Groovy
```groovy
dependencies {
implementation 'org.jetbrains.exposed:exposed-core:0.38.2'
implementation 'org.jetbrains.exposed:exposed-dao:0.38.2'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.38.2'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.38.2'
implementation 'org.jetbrains.exposed:exposed-core:0.39.1'
implementation 'org.jetbrains.exposed:exposed-dao:0.39.1'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.39.1'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.39.1'
// or
implementation 'org.jetbrains.exposed:exposed-java-time:0.38.2'
implementation 'org.jetbrains.exposed:exposed-java-time:0.39.1'
}
```
#### Gradle Kotlin DSL
@@ -128,7 +128,7 @@ dependencies {
```
and in `gradle.properties`
```
exposedVersion=0.38.2
exposedVersion=0.39.1
```
### JDBC driver and logging