diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6969dd3..21e8883 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DB_URL: ${{ secrets.DB_URL }} with: - gradle-version: 8.2.1 + gradle-version: 8.4 arguments: clean test build publish --info --stacktrace -PIS_SNAPSHOT_BUILD=true - name: Upload Test Results uses: dorny/test-reporter@v1.6.0 diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 2de5a87..af7569a 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -29,7 +29,7 @@ jobs: PACKAGE_STORE_TOKEN: ${{ secrets.PACKAGE_STORE_TOKEN }} DB_URL: ${{ secrets.DB_URL }} with: - gradle-version: 8.2.1 + gradle-version: 8.4 arguments: clean test build publish --info --stacktrace -PIS_SNAPSHOT_BUILD=false - name: Upload Test Results uses: dorny/test-reporter@v1.6.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index ef7ef9c..af309c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +# 0.13.0 + +- `exposed` version `0.10.0` + # 0.12.2 - `jdk` version `20` diff --git a/README.md b/README.md index 104491c..602c687 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A collection of extensions for [Exposed](https://github.com/tpasipanodya/Exposed ## How to Use ```kotlin -implementation("io.taff:exposed-extensions:0.12.2") +implementation("io.taff:exposed-extensions:0.13.0") ``` Using logical tenant isolation as an example: diff --git a/build.gradle.kts b/build.gradle.kts index 6436e14..5872c18 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,12 +8,12 @@ plugins { } group = "io.taff" -version = "0.12.2${ if (isReleaseBuild()) "" else "-SNAPSHOT" }" +version = "0.13.0${ if (isReleaseBuild()) "" else "-SNAPSHOT" }" java.sourceCompatibility = JavaVersion.VERSION_20 repositories { maven { - name = "spek-expect" + name = "exposed" url = uri("https://maven.pkg.github.com/tpasipanodya/exposed") credentials { username = System.getenv("PACKAGE_STORE_USERNAME") @@ -41,9 +41,9 @@ dependencies { api("org.slf4j:slf4j-simple:2.0.9") api("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.0") api("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.16.0") - api("io.taff.exposed:exposed-core:0.9.2") - api("io.taff.exposed:exposed-jdbc:0.9.2") - api("io.taff.exposed:exposed-java-time:0.9.2") + api("io.taff.exposed:exposed-core:0.10.0") + api("io.taff.exposed:exposed-jdbc:0.10.0") + api("io.taff.exposed:exposed-java-time:0.10.0") implementation("org.postgresql:postgresql:42.7.0") testImplementation("io.taff:spek-expekt:0.10.3") testImplementation(enforcedPlatform("org.junit:junit-bom:5.10.1"))