diff --git a/Jenkinsfile b/Jenkinsfile index daaa4a2..5a775bc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -74,7 +74,7 @@ pipeline { script { def version = sh(script: "node -p \"require('./package.json').version\"", returnStdout: true).trim() def tagName = "v${version}" - def releaseName = "Release ${version}" + def releaseName = "v${version}" sh ''' git config user.name 'Ishaan Jain' @@ -130,7 +130,7 @@ pipeline { "attachments": [ { "color": "#36a64f", - "title": "✅ ReactJS SDK Deployed", + "title": "✅ ReactJS Feed Core SDK Deployed", "title_link": "https://github.com/${REPO}/releases/tag/${version}", "text": "A new version of the React SDK has been deployed and released.", "fields": [ diff --git a/core/package.json b/core/package.json index 1df1de0..188fbfd 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@likeminds.community/likeminds-feed-reactjs", - "version": "1.11.0", + "version": "1.11.1", "scripts": { "start": "react-app-rewired start", "build": "react-app-rewired build", diff --git a/core/src/shared/getClient.ts b/core/src/shared/getClient.ts index 516836f..7742264 100644 --- a/core/src/shared/getClient.ts +++ b/core/src/shared/getClient.ts @@ -3,7 +3,7 @@ import { LMFeedClient } from "@likeminds.community/feed-js"; export function initiateFeedClient() { const lmFeedClient = LMFeedClient.Builder() .setPlatformCode("rt") - .setVersionCode(22) + .setVersionCode(23) .build(); return lmFeedClient; }