Skip to content

Commit

Permalink
release: v0.13.2
Browse files Browse the repository at this point in the history
Signed-off-by: Art Shendrik <[email protected]>
  • Loading branch information
amal committed Nov 26, 2024
1 parent 108c2eb commit 1e60a01
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 22
java-version: 23

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
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,9 @@

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


## [0.13.2] - 2024-11-26

### Fixed
- fix publication config by handling SonatypeHost in the FluxoPublicationConfig dynamically.
- don't try to setup browser target for Wasm WASI.
Expand Down Expand Up @@ -407,6 +410,7 @@ _Stabilization release._

## Notes

[0.13.2]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.2
[0.13.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.1
[0.13.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.0
[0.12.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.12.1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 "2.0.21"
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.1" // <-- add here
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.2" // <-- add here
}
```

Expand All @@ -59,7 +59,7 @@ pluginManagement {
}
resolutionStrategy.eachPlugin {
if (requested.id.toString() == "io.github.fluxo-kt.fluxo-kmp-conf")
useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:f805fa1704") // ← specify a version or commit
useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:47d9c55ab6") // ← specify a version or commit
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion fluxo-kmp-conf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fkcSetupGradlePlugin(

publicationConfig {
developerId = "amal"
developerName = "Artyom Shendrik"
developerName = "Art Shendrik"
developerEmail = "[email protected]"
}

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

# WARNING: Remember to update the version in `README.md` examples!
version = "0.13.2-SNAPSHOT"
version = "0.13.2"

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

0 comments on commit 1e60a01

Please sign in to comment.