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
9 files changed +27
-123
lines changed Original file line number Diff line number Diff line change 1
1
name : kotlin
2
- version : 10.2.0
2
+ version : 10.2.1
3
3
schema : 1
4
4
scm : github.com/pubnub/kotlin
5
5
files :
6
- - build/libs/pubnub-kotlin-10.2.0 -all.jar
6
+ - build/libs/pubnub-kotlin-10.2.1 -all.jar
7
7
sdks :
8
8
-
9
9
type : library
23
23
-
24
24
distribution-type : library
25
25
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
28
28
supported-platforms :
29
29
supported-operating-systems :
30
30
Android :
@@ -114,6 +114,11 @@ sdks:
114
114
license-url : https://www.apache.org/licenses/LICENSE-2.0.txt
115
115
is-required : Required
116
116
changelog :
117
+ - date : 2024-12-03
118
+ version : v10.2.1
119
+ changes :
120
+ - type : improvement
121
+ text : " Internal changes in preparation for other releases."
117
122
- date : 2024-11-18
118
123
version : v10.2.0
119
124
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
+
1
7
## v10.2.0
2
8
November 18 2024
3
9
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
20
20
<dependency >
21
21
<groupId >com.pubnub</groupId >
22
22
<artifactId >pubnub-kotlin</artifactId >
23
- <version >10.2.0 </version >
23
+ <version >10.2.1 </version >
24
24
</dependency >
25
25
```
26
26
Original file line number Diff line number Diff line change @@ -16,16 +16,17 @@ import org.jlleitschuh.gradle.ktlint.KtlintPlugin
16
16
class PubNubSharedPlugin : Plugin <Project > {
17
17
override fun apply (target : Project ) {
18
18
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
+ }
26
26
}
27
27
}
28
28
}
29
+ apply<KtlintPlugin >()
29
30
30
31
group = providers.gradleProperty(" GROUP" ).get()
31
32
version = providers.gradleProperty(" VERSION_NAME" ).get()
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ RELEASE_SIGNING_ENABLED=true
18
18
SONATYPE_HOST =DEFAULT
19
19
SONATYPE_AUTOMATIC_RELEASE =false
20
20
GROUP =com.pubnub
21
- VERSION_NAME =10.2.0
21
+ VERSION_NAME =10.2.1
22
22
POM_PACKAGING =jar
23
23
24
24
POM_NAME =PubNub SDK
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ class PubNubImplTest : BaseTest() {
56
56
fun getVersionAndTimeStamp () {
57
57
val version = PubNubImpl .SDK_VERSION
58
58
val timeStamp = PubNubImpl .timestamp()
59
- assertEquals(" 10.2.0 " , version)
59
+ assertEquals(" 10.2.1 " , version)
60
60
assertTrue(timeStamp > 0 )
61
61
}
62
62
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import java.util.Properties
4
4
5
5
plugins {
6
6
alias(libs.plugins.benmanes.versions)
7
- alias(libs.plugins.codingfeline.buildkonfig)
8
7
id(" pubnub.shared" )
9
8
id(" pubnub.ios-simulator-test" )
10
9
id(" pubnub.base.multiplatform" )
10
+ alias(libs.plugins.codingfeline.buildkonfig)
11
11
}
12
12
13
13
kotlin {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments