Skip to content

Commit

Permalink
Renamed name to id in SpacePermissions (#67)
Browse files Browse the repository at this point in the history
* PubNub SDK v7.3.1 release.
  • Loading branch information
marcin-cebo authored Jun 29, 2022
1 parent 1a9e366 commit bfb6782
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 11 deletions.
17 changes: 11 additions & 6 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: kotlin
version: 7.3.0
version: 7.3.1
schema: 1
scm: github.com/pubnub/kotlin
files:
- build/libs/pubnub-kotlin-7.3.0-all.jar
- build/libs/pubnub-kotlin-7.3.1-all.jar
sdks:
-
type: library
Expand All @@ -23,8 +23,8 @@ sdks:
-
distribution-type: library
distribution-repository: GitHub
package-name: pubnub-kotlin-7.3.0
location: https://github.com/pubnub/kotlin/releases/download/v7.3.0/pubnub-kotlin-7.3.0-all.jar
package-name: pubnub-kotlin-7.3.1
location: https://github.com/pubnub/kotlin/releases/download/v7.3.1/pubnub-kotlin-7.3.1-all.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -135,8 +135,8 @@ sdks:
-
distribution-type: library
distribution-repository: maven
package-name: pubnub-kotlin-7.3.0
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/7.3.0/pubnub-kotlin-7.3.0.jar
package-name: pubnub-kotlin-7.3.1
location: https://repo.maven.apache.org/maven2/com/pubnub/pubnub-kotlin/7.3.1/pubnub-kotlin-7.3.1.jar
supported-platforms:
supported-operating-systems:
Android:
Expand Down Expand Up @@ -233,6 +233,11 @@ sdks:
license-url: https://github.com/stleary/JSON-java/blob/20210307/LICENSE
is-required: Required
changelog:
- date: 2022-06-28
version: v7.3.1
changes:
- type: bug
text: "Renamed name to id in SpacePermissions."
- date: 2022-06-28
version: v7.3.0
changes:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v7.3.1
June 28 2022

#### Fixed
- Renamed name to id in SpacePermissions.

## v7.3.0
June 28 2022

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ You will need the publish and subscribe keys to authenticate your app. Get your
<dependency>
<groupId>com.pubnub</groupId>
<artifactId>pubnub-gson</artifactId>
<version>7.3.0</version>
<version>7.3.1</version>
</dependency>
```

* for Gradle, add the following dependency in your `gradle.build`:
```groovy
implementation 'com.pubnub:pubnub-kotlin:7.3.0'
implementation 'com.pubnub:pubnub-kotlin:7.3.1'
```

2. Configure your keys:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.unsafe.configuration-cache=false

GROUP=com.pubnub
POM_ARTIFACT_ID=pubnub-kotlin
VERSION_NAME=7.3.0
VERSION_NAME=7.3.1
POM_PACKAGING=jar

POM_NAME=PubNub Android Chat Components
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/pubnub/api/PubNub.kt
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class PubNub(val configuration: PNConfiguration) {

companion object {
private const val TIMESTAMP_DIVIDER = 1000
private const val SDK_VERSION = "7.3.0"
private const val SDK_VERSION = "7.3.1"
private const val MAX_SEQUENCE = 65535

/**
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/pubnub/api/legacy/PubNubTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class PubNubTest : BaseTest() {
fun getVersionAndTimeStamp() {
val version = pubnub.version
val timeStamp = pubnub.timestamp()
assertEquals("7.3.0", version)
assertEquals("7.3.1", version)
assertTrue(timeStamp > 0)
}
}

0 comments on commit bfb6782

Please sign in to comment.