File tree Expand file tree Collapse file tree 9 files changed +27
-123
lines changed
build-logic/gradle-plugins/src/main/kotlin/com/pubnub/gradle
pubnub-kotlin-impl/src/test/kotlin/com/pubnub/api/legacy Expand file tree Collapse file tree 9 files changed +27
-123
lines changed Original file line number Diff line number Diff line change 11name : kotlin
2- version : 10.2.0
2+ version : 10.2.1
33schema : 1
44scm : github.com/pubnub/kotlin
55files :
6- - build/libs/pubnub-kotlin-10.2.0 -all.jar
6+ - build/libs/pubnub-kotlin-10.2.1 -all.jar
77sdks :
88 -
99 type : library
2323 -
2424 distribution-type : library
2525 distribution-repository : maven
26- package-name : pubnub-kotlin-10.2.0
27- location : https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.2.0 /pubnub-kotlin-10.2.0 .jar
26+ package-name : pubnub-kotlin-10.2.1
27+ location : https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/10.2.1 /pubnub-kotlin-10.2.1 .jar
2828 supported-platforms :
2929 supported-operating-systems :
3030 Android :
@@ -114,6 +114,11 @@ sdks:
114114 license-url : https://www.apache.org/licenses/LICENSE-2.0.txt
115115 is-required : Required
116116changelog :
117+ - date : 2024-12-03
118+ version : v10.2.1
119+ changes :
120+ - type : improvement
121+ text : " Internal changes in preparation for other releases."
117122 - date : 2024-11-18
118123 version : v10.2.0
119124 changes :
Original file line number Diff line number Diff line change 1+ ## v10.2.1
2+ December 03 2024
3+
4+ #### Modified
5+ - Internal changes in preparation for other releases.
6+
17## v10.2.0
28November 18 2024
39
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ You will need the publish and subscribe keys to authenticate your app. Get your
2020 <dependency >
2121 <groupId >com.pubnub</groupId >
2222 <artifactId >pubnub-kotlin</artifactId >
23- <version >10.2.0 </version >
23+ <version >10.2.1 </version >
2424 </dependency >
2525 ```
2626
Original file line number Diff line number Diff line change @@ -16,16 +16,17 @@ import org.jlleitschuh.gradle.ktlint.KtlintPlugin
1616class PubNubSharedPlugin : Plugin <Project > {
1717 override fun apply (target : Project ) {
1818 with (target) {
19- apply< MavenPublishPlugin >()
20- apply<KtlintPlugin >()
21-
22- extensions.configure< PublishingExtension > {
23- repositories {
24- it.maven(uri(rootProject.layout.buildDirectory.dir( " repo" ))) { ->
25- name = " repo "
19+ if ( ! target.name.endsWith( " -test " )) {
20+ apply<MavenPublishPlugin >()
21+ extensions.configure< PublishingExtension > {
22+ repositories {
23+ it.maven(uri(rootProject.layout.buildDirectory.dir( " repo " ))) { ->
24+ name = " repo"
25+ }
2626 }
2727 }
2828 }
29+ apply<KtlintPlugin >()
2930
3031 group = providers.gradleProperty(" GROUP" ).get()
3132 version = providers.gradleProperty(" VERSION_NAME" ).get()
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true
1818SONATYPE_HOST =DEFAULT
1919SONATYPE_AUTOMATIC_RELEASE =false
2020GROUP =com.pubnub
21- VERSION_NAME =10.2.0
21+ VERSION_NAME =10.2.1
2222POM_PACKAGING =jar
2323
2424POM_NAME =PubNub SDK
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class PubNubImplTest : BaseTest() {
5656 fun getVersionAndTimeStamp () {
5757 val version = PubNubImpl .SDK_VERSION
5858 val timeStamp = PubNubImpl .timestamp()
59- assertEquals(" 10.2.0 " , version)
59+ assertEquals(" 10.2.1 " , version)
6060 assertTrue(timeStamp > 0 )
6161 }
6262
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import java.util.Properties
44
55plugins {
66 alias(libs.plugins.benmanes.versions)
7- alias(libs.plugins.codingfeline.buildkonfig)
87 id(" pubnub.shared" )
98 id(" pubnub.ios-simulator-test" )
109 id(" pubnub.base.multiplatform" )
10+ alias(libs.plugins.codingfeline.buildkonfig)
1111}
1212
1313kotlin {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments