Skip to content

Commit

Permalink
Prepare version 0.8.1 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpasipanodya authored Jan 2, 2022
1 parent e425411 commit 9f591be
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,10 @@ jobs:
with:
gradle-version: 7.3
arguments: clean test build artifactoryPublish --info -PIS_SNAPSHOT_BUILD=true
- name: Upload Test Results
uses: dorny/[email protected]
if: success() || failure()
with:
name: Test Results
path: build/test-results/test/*.xml
reporter: java-junit
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,10 @@ jobs:
with:
gradle-version: 7.3
arguments: clean test build artifactoryPublish --info -PIS_SNAPSHOT_BUILD=false
- name: Upload Test Results
uses: dorny/[email protected]
if: success() || failure()
with:
name: Test Results
path: build/test-results/test/*.xml
reporter: java-junit
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.8.1
- `org.jetbrains.dokka` version `1.6.10`
- `com.jfrog.artifactory` version `4.25.4`
- Added a build & release step that uploads test results.
- Added a CI badge to `README.md`

## 0.8.0
- `io.taff.exposed` version `0.3.0`.
- Renamed `Model` to `Record`
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Exposed Extensions
![Build](https://github.com/tpasipanodya/exposed-extensions/actions/workflows/.github/workflows/release.yml/badge.svg)

A collection of extensions for [Exposed](https://github.com/tpasipanodya/Exposed). Includes:
- Logical tenant isolation, soft deletes and (and more) via [Exposed](https://github.com/tpasipanodya/Exposed)'s default scopes.
Expand All @@ -11,7 +12,7 @@ A collection of extensions for [Exposed](https://github.com/tpasipanodya/Exposed

## How to Use
```kotlin
implementation("io.taff:exposed-extensions:0.8.0")
implementation("io.taff:exposed-extensions:0.8.1")
```

Using logical tenant isolation as an example:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = "io.taff"
version = "0.8.0${ if (isReleaseBuild()) "" else "-SNAPSHOT" }"
version = "0.8.1${ if (isReleaseBuild()) "" else "-SNAPSHOT" }"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
Expand Down Expand Up @@ -41,7 +41,7 @@ dependencies {
api("io.taff.exposed:exposed-jdbc:0.3.0")
api("io.taff.exposed:exposed-java-time:0.3.0")
implementation("org.postgresql:postgresql:42.3.1")
testImplementation("io.taff:spek-expekt:0.6.0")
testImplementation("io.taff:spek-expekt:0.6.2")
testImplementation(enforcedPlatform("org.junit:junit-bom:5.8.2"))
}

Expand Down

0 comments on commit 9f591be

Please sign in to comment.