From ff78306e0a0c25940d6d0cfe0420cfd3506498a8 Mon Sep 17 00:00:00 2001 From: Chantal Loncle <82039410+bog-walk@users.noreply.github.com> Date: Wed, 8 May 2024 13:04:44 -0400 Subject: [PATCH] chore: Bump Exposed version from 0.50.0 to 0.50.1 --- CHANGELOG.md | 8 ++++ README.md | 42 +++++++++---------- .../Writerside/topics/Exposed-Modules.md | 24 +++++------ .../topics/Getting-Started-with-Exposed.md | 8 ++-- exposed-bom/README.md | 4 +- exposed-spring-boot-starter/README.md | 6 +-- gradle.properties | 2 +- samples/exposed-ktor/gradle.properties | 2 +- samples/exposed-spring/gradle.properties | 2 +- 9 files changed, 53 insertions(+), 45 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4a06ee30d..4515c07729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.50.1 +Bug fixes: +* fix: EXPOSED-366 inList with EntityID column causes type mismatch error by @bog-walk in https://github.com/JetBrains/Exposed/pull/2070 +* fix: EXPOSED-371 Fix incorrect table reference passed to EntityID instance when using value-based utility functions by @dzikoysk in https://github.com/JetBrains/Exposed/pull/2074 + +Docs: +* update: update Exposed logo by @koshachy in https://github.com/JetBrains/Exposed/pull/2071 + # 0.50.0 Infrastructure: * Spring Framework 6.1.6 diff --git a/README.md b/README.md index b5061bf396..ea330cffc2 100644 --- a/README.md +++ b/README.md @@ -81,52 +81,52 @@ The Maven Central repository is enabled by default for Maven users. org.jetbrains.exposed exposed-core - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-crypt - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-dao - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-java-time - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-jdbc - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-jodatime - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-json - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-kotlin-datetime - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-money - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-spring-boot-starter - 0.50.0 + 0.50.1 @@ -136,20 +136,20 @@ The Maven Central repository is enabled by default for Maven users. ```groovy dependencies { - implementation 'org.jetbrains.exposed:exposed-core:0.50.0' - implementation 'org.jetbrains.exposed:exposed-crypt:0.50.0' - implementation 'org.jetbrains.exposed:exposed-dao:0.50.0' - implementation 'org.jetbrains.exposed:exposed-jdbc:0.50.0' + implementation 'org.jetbrains.exposed:exposed-core:0.50.1' + implementation 'org.jetbrains.exposed:exposed-crypt:0.50.1' + implementation 'org.jetbrains.exposed:exposed-dao:0.50.1' + implementation 'org.jetbrains.exposed:exposed-jdbc:0.50.1' - implementation 'org.jetbrains.exposed:exposed-jodatime:0.50.0' + implementation 'org.jetbrains.exposed:exposed-jodatime:0.50.1' // or - implementation 'org.jetbrains.exposed:exposed-java-time:0.50.0' + implementation 'org.jetbrains.exposed:exposed-java-time:0.50.1' // or - implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.50.0' + implementation 'org.jetbrains.exposed:exposed-kotlin-datetime:0.50.1' - implementation 'org.jetbrains.exposed:exposed-json:0.50.0' - implementation 'org.jetbrains.exposed:exposed-money:0.50.0' - implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.50.0' + implementation 'org.jetbrains.exposed:exposed-json:0.50.1' + implementation 'org.jetbrains.exposed:exposed-money:0.50.1' + implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.50.1' } ``` @@ -180,7 +180,7 @@ dependencies { and in `gradle.properties` ``` -exposedVersion=0.50.0 +exposedVersion=0.50.1 ``` ## Samples diff --git a/documentation-website/Writerside/topics/Exposed-Modules.md b/documentation-website/Writerside/topics/Exposed-Modules.md index e2a154f4f2..818adf6bc9 100644 --- a/documentation-website/Writerside/topics/Exposed-Modules.md +++ b/documentation-website/Writerside/topics/Exposed-Modules.md @@ -53,7 +53,7 @@ Dependencies mapping listed below is similar (by functionality) to the previous - val exposedVersion: String = "0.50.0" + val exposedVersion: String = "0.50.1" dependencies { implementation("org.jetbrains.exposed:exposed-core:$exposedVersion") implementation("org.jetbrains.exposed:exposed-crypt:$exposedVersion") @@ -80,59 +80,59 @@ Dependencies mapping listed below is similar (by functionality) to the previous <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-core</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-crypt</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-dao</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-java-time</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-jdbc</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-jodatime</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-json</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-kotlin-datetime</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-money</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> <dependency> <groupId>org.jetbrains.exposed</groupId> <artifactId>exposed-spring-boot-starter</artifactId> - <version>0.50.0</version> + <version>0.50.1</version> </dependency> </dependencies> - def exposedVersion = "0.50.0" + def exposedVersion = "0.50.1" dependencies { implementation "org.jetbrains.exposed:exposed-core:$exposedVersion" implementation "org.jetbrains.exposed:exposed-crypt:$exposedVersion" diff --git a/documentation-website/Writerside/topics/Getting-Started-with-Exposed.md b/documentation-website/Writerside/topics/Getting-Started-with-Exposed.md index 7449dd8cfe..fdf8baf22b 100644 --- a/documentation-website/Writerside/topics/Getting-Started-with-Exposed.md +++ b/documentation-website/Writerside/topics/Getting-Started-with-Exposed.md @@ -7,7 +7,7 @@ Before starting using Exposed, you need to add the dependencies to your project. -val exposed_version = "0.50.0" +val exposed_version = "0.50.1" dependencies { implementation("org.jetbrains.exposed", "exposed-core", exposed_version) implementation("org.jetbrains.exposed", "exposed-dao", exposed_version) @@ -22,17 +22,17 @@ dependencies { org.jetbrains.exposed exposed-core - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-dao - 0.50.0 + 0.50.1 org.jetbrains.exposed exposed-jdbc - 0.50.0 + 0.50.1 ]]> diff --git a/exposed-bom/README.md b/exposed-bom/README.md index 20f0945469..6c541c9b23 100644 --- a/exposed-bom/README.md +++ b/exposed-bom/README.md @@ -8,7 +8,7 @@ Bill of Materials for all Exposed modules org.jetbrains.exposed exposed-bom - 0.50.0 + 0.50.1 pom import @@ -39,7 +39,7 @@ repositories { } dependencies { - implementation(platform("org.jetbrains.exposed:exposed-bom:0.50.0")) + implementation(platform("org.jetbrains.exposed:exposed-bom:0.50.1")) implementation("org.jetbrains.exposed", "exposed-core") implementation("org.jetbrains.exposed", "exposed-dao") implementation("org.jetbrains.exposed", "exposed-jdbc") diff --git a/exposed-spring-boot-starter/README.md b/exposed-spring-boot-starter/README.md index 16dbe253ae..9fea2f4fc0 100644 --- a/exposed-spring-boot-starter/README.md +++ b/exposed-spring-boot-starter/README.md @@ -10,7 +10,7 @@ This starter will give you the latest version of [Exposed](https://github.com/Je org.jetbrains.exposed exposed-spring-boot-starter - 0.50.0 + 0.50.1 ``` @@ -20,7 +20,7 @@ repositories { mavenCentral() } dependencies { - implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.50.0' + implementation 'org.jetbrains.exposed:exposed-spring-boot-starter:0.50.1' } ``` ### Gradle Kotlin DSL @@ -36,7 +36,7 @@ dependencies { ``` In `gradle.properties` ```properties -exposedVersion=0.50.0 +exposedVersion=0.50.1 ``` ## Setting up a database connection diff --git a/gradle.properties b/gradle.properties index a3d7f0a6cf..a0bb6ef7ff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,4 +4,4 @@ org.gradle.configuration.cache=true org.gradle.caching=true group=org.jetbrains.exposed -version=0.50.0 +version=0.50.1 diff --git a/samples/exposed-ktor/gradle.properties b/samples/exposed-ktor/gradle.properties index b847167290..cdc0134412 100644 --- a/samples/exposed-ktor/gradle.properties +++ b/samples/exposed-ktor/gradle.properties @@ -2,5 +2,5 @@ ktorVersion=2.3.4 kotlinVersion=1.8.10 logbackVersion=1.2.11 kotlin.code.style=official -exposedVersion=0.50.0 +exposedVersion=0.50.1 h2Version=2.1.214 diff --git a/samples/exposed-spring/gradle.properties b/samples/exposed-spring/gradle.properties index 21b7f1f417..f554a14e53 100644 --- a/samples/exposed-spring/gradle.properties +++ b/samples/exposed-spring/gradle.properties @@ -1,2 +1,2 @@ -exposedVersion=0.50.0 +exposedVersion=0.50.1 kotlinVersion=1.8.21