Skip to content

Commit

Permalink
Bump Versions (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasipanodya authored Nov 24, 2023
1 parent 464e0b7 commit 3f7ed2c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
10 changes: 5 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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"))
Expand Down

0 comments on commit 3f7ed2c

Please sign in to comment.