Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: oshai/kotlin-logging
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.3
Choose a base ref
...
head repository: oshai/kotlin-logging
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.0.4
Choose a head ref
  • 3 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 2, 2022

  1. set jvmTarget back to 8 (#258)

    To fix #257.
    * Update build.gradle.kts
    oshai authored Nov 2, 2022
    Copy the full SHA
    90ddbd3 View commit details
  2. add ktfmtCheck to CI

    oshai committed Nov 2, 2022
    Copy the full SHA
    fd263c1 View commit details
  3. bump version to 3.0.5

    oshai committed Nov 2, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e17386c View commit details
Showing with 3 additions and 3 deletions.
  1. +1 −1 .github/workflows/ci.yml
  2. +2 −2 build.gradle.kts
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -62,4 +62,4 @@ jobs:
restore-keys: ${{ runner.os }}-gradle-

- name: Gradle Build
run: ./gradlew clean build --stacktrace
run: ./gradlew clean build ktfmtCheck --stacktrace
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ plugins {
apply("versions.gradle.kts")

group = "io.github.microutils"
version = "3.0.4"
version = "3.0.5"

repositories {
mavenCentral()
@@ -38,7 +38,7 @@ kotlin {
kotlinOptions {
apiVersion = "1.4"
languageVersion = "1.4"
jvmTarget = "11"
jvmTarget = "1.8"
}
}
}