Skip to content

Commit

Permalink
release: v0.5.0
Browse files Browse the repository at this point in the history
Signed-off-by: Artyom Shendrik <artyom.shendrik@gmail.com>
  • Loading branch information
amal committed Dec 24, 2023
1 parent 1a4d743 commit 77ebed4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,17 @@ jobs:
with:
cache-read-only: true

- name: GitHub Release
# https://github.com/anton-yurchenko/git-release#readme
uses: docker://antonyurchenko/git-release:latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRAFT_RELEASE: "true"
PRE_RELEASE: "${{ env.RELEASE_PRE }}"
RELEASE_NAME_SUFFIX: "${{ env.RELEASE_SUFFIX }}"
CHANGELOG_FILE: "CHANGELOG.md"
ALLOW_EMPTY_CHANGELOG: "false"

- name: Check and publish plugin
if: github.repository == 'fluxo-kt/fluxo-kmp-conf'
env:
Expand All @@ -70,16 +81,5 @@ jobs:
-Pgradle.publish.key="${{ secrets.GRADLE_PUBLISH_KEY }}"
-Pgradle.publish.secret="${{ secrets.GRADLE_PUBLISH_SECRET }}"
- name: GitHub Release
# https://github.com/anton-yurchenko/git-release#readme
uses: docker://antonyurchenko/git-release:latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRAFT_RELEASE: "true"
PRE_RELEASE: "${{ env.RELEASE_PRE }}"
RELEASE_NAME_SUFFIX: "${{ env.RELEASE_SUFFIX }}"
CHANGELOG_FILE: "CHANGELOG.md"
ALLOW_EMPTY_CHANGELOG: "false"

# References
# https://github.com/studiometa/vue-mapbox-gl/blob/8c3ca5a/.github/workflows/release.yml#L26
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

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


## [0.5.0] - 2023-12-24

### Fixed

- correct publication configuration.
Expand Down Expand Up @@ -60,6 +63,7 @@ _Stabilization release._

## Notes

[0.5.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.5.0
[0.4.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.4.0
[0.3.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.3.0
[0.2.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Targeted for Gradle 8+ and Kotlin 1.9+. Built with:<br>
// 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.4.0" // <-- add here
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.5.0" // <-- add here
}
```

Expand Down
4 changes: 2 additions & 2 deletions dependencies/classpath.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ com.squareup.okio:okio-jvm:3.2.0
com.squareup.okio:okio:3.2.0
commons-codec:commons-codec:1.16.0
dev.equo.ide:solstice:1.7.4
io.github.fluxo-kt.fluxo-kmp-conf:io.github.fluxo-kt.fluxo-kmp-conf.gradle.plugin:0.3.0
io.github.fluxo-kt:plugin:0.3.0
io.github.fluxo-kt.fluxo-kmp-conf:io.github.fluxo-kt.fluxo-kmp-conf.gradle.plugin:0.4.0
io.github.fluxo-kt:fluxo-kmp-conf:0.4.0
io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.4
jakarta.activation:jakarta.activation-api:1.2.1
jakarta.xml.bind:jakarta.xml.bind-api:2.3.2
Expand Down
1 change: 1 addition & 0 deletions fluxo-kmp-conf/api/plugin.api
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ public abstract interface class fluxo/conf/dsl/FluxoConfigurationExtension : flu
public static synthetic fun asMultiplatform$default (Lfluxo/conf/dsl/FluxoConfigurationExtension;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)V
public fun configure (Lkotlin/jvm/functions/Function1;)V
public static synthetic fun configure$default (Lfluxo/conf/dsl/FluxoConfigurationExtension;Lkotlin/jvm/functions/Function1;ILjava/lang/Object;)V
public fun configureAsLibrary ()V
public abstract fun defaults (Lkotlin/jvm/functions/Function1;)V
public abstract fun getSkipDefaultConfigurations ()Z
public abstract fun setSkipDefaultConfigurations (Z)V
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

[versions]

version = "0.4.0"
fluxo-conf = "0.3.0"
version = "0.5.0"
fluxo-conf = "0.4.0"

# Java/Kotlin compatibility
# WARNING: kotlinApiVersion can't be greater than kotlinLangVersion!
Expand Down

0 comments on commit 77ebed4

Please sign in to comment.