Skip to content

Commit

Permalink
chore: Bump Exposed version from 0.44.0 to 0.44.1 (#1882)
Browse files Browse the repository at this point in the history
  • Loading branch information
joc-a committed Oct 30, 2023
1 parent 413c9c5 commit c57c997
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 54 deletions.
42 changes: 21 additions & 21 deletions README.md
Expand Up @@ -81,52 +81,52 @@ repositories {
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-core</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-crypt</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-dao</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-java-time</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jdbc</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jodatime</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-json</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-kotlin-datetime</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-money</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-spring-boot-starter</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
</dependencies>

Expand All @@ -136,20 +136,20 @@ repositories {

```groovy
dependencies {
implementation 'org.jetbrains.exposed:exposed-core:0.44.0'
implementation 'org.jetbrains.exposed:exposed-crypt:0.44.0'
implementation 'org.jetbrains.exposed:exposed-dao:0.44.0'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.44.0'
implementation 'org.jetbrains.exposed:exposed-core:0.44.1'
implementation 'org.jetbrains.exposed:exposed-crypt:0.44.1'
implementation 'org.jetbrains.exposed:exposed-dao:0.44.1'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.44.1'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.44.0'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.44.1'
// or
implementation 'org.jetbrains.exposed:exposed-java-time:0.44.0'
implementation 'org.jetbrains.exposed:exposed-java-time:0.44.1'
// or
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.44.0'
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.44.1'
implementation 'org.jetbrains.exposed:exposed-json:0.44.0'
implementation 'org.jetbrains.exposed:exposed-money:0.44.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.44.0'
implementation 'org.jetbrains.exposed:exposed-json:0.44.1'
implementation 'org.jetbrains.exposed:exposed-money:0.44.1'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.44.1'
}
```

Expand Down Expand Up @@ -180,7 +180,7 @@ dependencies {
and in `gradle.properties`

```
exposedVersion=0.44.0
exposedVersion=0.44.1
```

## Samples
Expand Down
18 changes: 18 additions & 0 deletions docs/ChangeLog.md
@@ -1,3 +1,21 @@
# 0.44.1
Infrastructure:
* MySQL driver 8.0.33

Bug fixes:
* [MySQL] Fix bug when inserted ids are not returned if `rewriteBatchedStatements` property set to true by @Tapac in https://github.com/JetBrains/Exposed/pull/1873
* fix: Incorrect SQL statements when creating a table with a dot in its name by @joc-a in https://github.com/JetBrains/Exposed/pull/1871
* fix: Parsing failure when selecting CURRENT_TIMESTAMP using CurrentDateTime function by @joc-a in https://github.com/JetBrains/Exposed/pull/1879

Deprecations:
* deprecate: Raise deprecation levels of API elements by @bog-walk in https://github.com/JetBrains/Exposed/pull/1872
* deprecate: Raise deprecation level of currentScheme property by @bog-walk in https://github.com/JetBrains/Exposed/pull/1874

Docs:
* Version Notice for JVM by @adambrangenberg in https://github.com/JetBrains/Exposed/pull/1858
* docs: Add missing KDocs in all modules except core and dao by @bog-walk in https://github.com/JetBrains/Exposed/pull/1876
* docs: EXPOSED-199 Update configuration section in spring-boot-starter README by @bog-walk in https://github.com/JetBrains/Exposed/pull/1878

# 0.44.0
Infrastructure:
* Kotlin 1.9.10
Expand Down
8 changes: 4 additions & 4 deletions documentation-website/Writerside/topics/Getting-Started.md
Expand Up @@ -18,17 +18,17 @@
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-core</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-dao</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jdbc</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
</dependencies>
]]>
Expand All @@ -37,7 +37,7 @@
<tab title="Gradle Kotlin Script">
<code-block lang="kotlin">
<![CDATA[
val exposedVersion: String = "0.44.0"
val exposedVersion: String = "0.44.1"
dependencies {
implementation("org.jetbrains.exposed:exposed-core", exposedVersion)
Expand Down
42 changes: 21 additions & 21 deletions documentation-website/Writerside/topics/Modules-Documentation.md
Expand Up @@ -95,52 +95,52 @@ Dependencies mapping listed below is similar (by functionality) to the previous
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-core</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-crypt</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-dao</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-java-time</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jdbc</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-jodatime</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-json</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-kotlin-datetime</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-money</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-spring-boot-starter</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
</dependency>
</dependencies>

Expand All @@ -150,20 +150,20 @@ Dependencies mapping listed below is similar (by functionality) to the previous

```groovy
dependencies {
implementation 'org.jetbrains.exposed:exposed-core:0.44.0'
implementation 'org.jetbrains.exposed:exposed-crypt:0.44.0'
implementation 'org.jetbrains.exposed:exposed-dao:0.44.0'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.44.0'
implementation 'org.jetbrains.exposed:exposed-core:0.44.1'
implementation 'org.jetbrains.exposed:exposed-crypt:0.44.1'
implementation 'org.jetbrains.exposed:exposed-dao:0.44.1'
implementation 'org.jetbrains.exposed:exposed-jdbc:0.44.1'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.44.0'
implementation 'org.jetbrains.exposed:exposed-jodatime:0.44.1'
// or
implementation 'org.jetbrains.exposed:exposed-java-time:0.44.0'
implementation 'org.jetbrains.exposed:exposed-java-time:0.44.1'
// or
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.44.0'
implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.44.1'
implementation 'org.jetbrains.exposed:exposed-json:0.44.0'
implementation 'org.jetbrains.exposed:exposed-money:0.44.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.44.0'
implementation 'org.jetbrains.exposed:exposed-json:0.44.1'
implementation 'org.jetbrains.exposed:exposed-money:0.44.1'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.44.1'
}
```

Expand Down Expand Up @@ -194,7 +194,7 @@ dependencies {
and in `gradle.properties`

```
exposedVersion=0.44.0
exposedVersion=0.44.1
```

### JDBC driver and logging
Expand Down
4 changes: 2 additions & 2 deletions exposed-bom/README.md
Expand Up @@ -17,7 +17,7 @@ Bill of Materials for all Exposed modules
<dependency>
<groupId>org.jetbrains.exposed</groupId>
<artifactId>exposed-bom</artifactId>
<version>0.44.0</version>
<version>0.44.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -51,7 +51,7 @@ repositories {
}

dependencies {
implementation(platform("org.jetbrains.exposed:exposed-bom:0.44.0"))
implementation(platform("org.jetbrains.exposed:exposed-bom:0.44.1"))
implementation("org.jetbrains.exposed", "exposed-core")
implementation("org.jetbrains.exposed", "exposed-dao")
implementation("org.jetbrains.exposed", "exposed-jdbc")
Expand Down
6 changes: 3 additions & 3 deletions exposed-spring-boot-starter/README.md
Expand Up @@ -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.44.0</version>
<version>0.44.1</version>
</dependency>
</dependencies>
```
Expand All @@ -28,7 +28,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.44.0'
implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.44.1'
}
```
### Gradle Kotlin DSL
Expand All @@ -44,7 +44,7 @@ dependencies {
```
In `gradle.properties`
```properties
exposedVersion=0.44.0
exposedVersion=0.44.1
```

## Setting up a database connection
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -4,4 +4,4 @@ org.gradle.configuration.cache=true
org.gradle.caching=true

group=org.jetbrains.exposed
version=0.44.0
version=0.44.1
2 changes: 1 addition & 1 deletion samples/exposed-ktor/gradle.properties
Expand Up @@ -2,5 +2,5 @@ ktorVersion=2.3.4
kotlinVersion=1.8.10
logbackVersion=1.2.11
kotlin.code.style=official
exposedVersion=0.44.0
exposedVersion=0.44.1
h2Version=2.1.214
2 changes: 1 addition & 1 deletion samples/exposed-spring/gradle.properties
@@ -1,2 +1,2 @@
exposedVersion=0.44.0
exposedVersion=0.44.1
kotlinVersion=1.8.21

0 comments on commit c57c997

Please sign in to comment.