diff --git a/.pubnub.yml b/.pubnub.yml index 1b9f6f9..8c996fd 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,11 +1,16 @@ --- name: pubnub-js-chat -version: v0.8.2 +version: v0.8.3 scm: github.com/pubnub/js-chat schema: 1 files: - lib/dist/index.js changelog: + - date: 2024-11-15 + version: v0.8.3 + changes: + - type: feature + text: "Add statusField for channel members." - date: 2024-08-27 version: v0.8.2 changes: diff --git a/lib/package.json b/lib/package.json index e17101a..c77b5ba 100644 --- a/lib/package.json +++ b/lib/package.json @@ -1,6 +1,6 @@ { "name": "@pubnub/chat", - "version": "0.8.2", + "version": "0.8.3", "description": "PubNub JavaScript Chat SDK", "author": "PubNub ", "license": "SEE LICENSE IN LICENSE", diff --git a/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx b/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx index 3b2e079..0ee1c11 100644 --- a/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx +++ b/samples/react-native-group-chat/screens/ordinary/chat/Chat.tsx @@ -9,8 +9,8 @@ import { Platform, Alert, } from "react-native" -import { StackScreenProps } from "@react-navigation/stack" import { GiftedChat, Bubble } from "react-native-gifted-chat" +import { StackScreenProps } from "@react-navigation/stack" import { User, MessageDraft, Message, Channel } from "@pubnub/chat" import { EnhancedIMessage, mapPNMessageToGChatMessage } from "../../../utils"