Skip to content

Commit

Permalink
Added v4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-jeon committed Jun 29, 2022
1 parent d7bf9bd commit 29ee8ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

### v4.0.3 (Jun 29, 2022)
- Fixed bugs
- Pending message doesn't serialize propery when `UserMessageCreateParams.mentionedUsers` is set with a `Member` object
- Canceled messages not being removed from the `MessageCollection`
- The `requestId` of a pending message differs from the scheduled message (and the actual sent message)

### v4.0.2 (Jun 28, 2022)
- Changed `GroupChannel.createScheduledUserMessage` and `GroupChannel.createScheduledFileMessage` to return corresponding `SendingStatus.PENDING` message object.
- Fixed a bug where when reconnected, an updated message gets removed and added again in `MessageCollection`.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Platform](https://img.shields.io/badge/platform-android-orange.svg)](https://github.com/sendbird/sendbird-chat-sdk-android)
[![Languages](https://img.shields.io/badge/language-kotlin-orange.svg)](https://github.com/sendbird/sendbird-chat-sdk-android)
[![This version of 'sendbird-chat' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/sendbird/release/maven/sendbird-chat/4.0.2/a=noarch;xg=com.sendbird.sdk/?render=true)](https://cloudsmith.io/~sendbird/repos/release/packages/detail/maven/sendbird-chat/4.0.2/a=noarch;xg=com.sendbird.sdk/)
[![This version of 'sendbird-chat' @ Cloudsmith](https://api-prd.cloudsmith.io/v1/badges/version/sendbird/release/maven/sendbird-chat/4.0.3/a=noarch;xg=com.sendbird.sdk/?render=true)](https://cloudsmith.io/~sendbird/repos/release/packages/detail/maven/sendbird-chat/4.0.3/a=noarch;xg=com.sendbird.sdk/)
[![Commercial License](https://img.shields.io/badge/license-Commercial-brightgreen.svg)](https://github.com/sendbird/sendbird-chat-sdk-android/blob/main/LICENSE.md)

## Table of contents
Expand Down Expand Up @@ -90,7 +90,7 @@ Then, add the dependency to the project's top-level `build.gradle` file:
```gradle
dependencies {
...
implementation 'com.sendbird.sdk:sendbird-chat:4.0.2'
implementation 'com.sendbird.sdk:sendbird-chat:4.0.3'
...
}
```
Expand All @@ -103,7 +103,7 @@ TLS 1.3 is enabled by default in Sendbird SDK for Android. To disable it, please
```gradle
dependencies {
implementation ('com.sendbird.sdk:sendbird-chat:4.0.2') {
implementation ('com.sendbird.sdk:sendbird-chat:4.0.3') {
exclude group: 'org.conscrypt', module: 'conscrypt-android'
}
}
Expand Down

0 comments on commit 29ee8ce

Please sign in to comment.