Skip to content

Commit 1e60a01

Browse files
committed
release: v0.13.2
Signed-off-by: Art Shendrik <artyom.shendrik@gmail.com>
1 parent 108c2eb commit 1e60a01

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/pr-baseline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/setup-java@v4
6161
with:
6262
distribution: temurin
63-
java-version: 22
63+
java-version: 23
6464

6565
- name: Setup Gradle
6666
uses: gradle/actions/setup-gradle@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

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

8+
9+
## [0.13.2] - 2024-11-26
10+
811
### Fixed
912
- fix publication config by handling SonatypeHost in the FluxoPublicationConfig dynamically.
1013
- don't try to setup browser target for Wasm WASI.
@@ -407,6 +410,7 @@ _Stabilization release._
407410

408411
## Notes
409412

413+
[0.13.2]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.2
410414
[0.13.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.1
411415
[0.13.0]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.13.0
412416
[0.12.1]: https://github.com/fluxo-kt/fluxo-kmp-conf/releases/tag/v0.12.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Targeted for Gradle 8+ and Kotlin 1.9+. Built with:<br>
3333
// in the `build.gradle.kts` of the target module.
3434
plugins {
3535
kotlin("multiplatform") version "2.0.21"
36-
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.1" // <-- add here
36+
id("io.github.fluxo-kt.fluxo-kmp-conf") version "0.13.2" // <-- add here
3737
}
3838
```
3939

@@ -59,7 +59,7 @@ pluginManagement {
5959
}
6060
resolutionStrategy.eachPlugin {
6161
if (requested.id.toString() == "io.github.fluxo-kt.fluxo-kmp-conf")
62-
useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:f805fa1704") // ← specify a version or commit
62+
useModule("com.github.fluxo-kt.fluxo-kmp-conf:fluxo-kmp-conf:47d9c55ab6") // ← specify a version or commit
6363
}
6464
}
6565
```

fluxo-kmp-conf/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fkcSetupGradlePlugin(
6464

6565
publicationConfig {
6666
developerId = "amal"
67-
developerName = "Artyom Shendrik"
67+
developerName = "Art Shendrik"
6868
developerEmail = "artyom.shendrik@gmail.com"
6969
}
7070

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[versions]
1111

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

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

0 commit comments

Comments
 (0)