Skip to content

Commit

Permalink
release: v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Artyom Shendrik <[email protected]>
  • Loading branch information
amal committed Dec 10, 2023
1 parent da61ca7 commit 6a704c3
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ env:
BUILD_NUMBER: ${{ github.run_number }}
SCM_TAG: ${{ github.sha }}
#GRADLE_OPTS: "-Dorg.gradle.daemon=false"
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS: "^(?!(classpath)).*"
DEPENDENCY_GRAPH_INCLUDE_PROJECTS: "^:(?!(buildSrc|test-)).*"

Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ env:
CI: true
BUILD_NUMBER: ${{ github.run_number }}
SCM_TAG: ${{ github.sha }}
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
GRADLE_OPTS: "\
-Dorg.gradle.daemon=false \
-Dorg.gradle.caching=false \
-Dorg.gradle.configuration-cache=false \
-Dorg.gradle.unsafe.watch-fs=false \
-Dorg.gradle.vfs.watch=false \
"

jobs:
release:
Expand Down Expand Up @@ -38,16 +44,17 @@ jobs:
echo "RELEASE_PRE=$RELEASE_PRE" >> $GITHUB_ENV
echo "RELEASE_SUFFIX=$RELEASE_SUFFIX" >> $GITHUB_ENV
- name: Set up JDK 17
- name: 'Set up JDK 21'
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'

- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
cache-read-only: true
dependency-graph: false

- name: Check and publish plugin
if: github.repository == 'fluxo-kt/fluxo-kmp-conf'
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@

## Unreleased

🌱 _First release._

[//]: # (Changed, Added, Removed, Fixed)
- ...


## [0.2.0] - 2023-12-10

🌱 _Initial pre-release in the [Gradle Plugin Portal](https://plugins.gradle.org/plugin/io.github.fluxo-kt.fluxo-kmp-conf)._


## Notes

[0.2.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.2.0

[^1]: Uses [Common Changelog style](https://common-changelog.org/) [^2]
[^2]: https://github.com/vweevers/common-changelog#readme
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Initially made for the [Fluxo][fluxo] state management framework and other libra
// in the `build.gradle.kts` of the target module
plugins {
kotlin("multiplatform") version "1.9.21"
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.1.0" // <-- add here
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.2.0" // <-- add here
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

[versions]

version = "0.1.0"
version = "0.2.0"

# Java/Kotlin compatibility
# WARNING: kotlinApiVersion can't be greater than kotlinLangVersion!
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ rootProject.name = "fluxo-kmp-conf"

// On module update, don't forget to update '.github/workflows/deps-submission.yml'!
include(":fluxo-kmp-conf")
project(":fluxo-kmp-conf").name = "plugin"

0 comments on commit 6a704c3

Please sign in to comment.