Skip to content

Commit

Permalink
Merge pull request #260 from apptentive/develop
Browse files Browse the repository at this point in the history
Release 6.8.0
  • Loading branch information
frankus authored Jun 26, 2024
2 parents ec46e4b + ba60491 commit e2a4b33
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/complete-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
tag-and-release:
# Run only after release PR branch is merged
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/')
if: github.event.pull_request.merged == true && github.head_ref == 'develop'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .scripts/changes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- Apptentive Android SDK: 6.7.0
- Apptentive iOS SDK: 6.7.0
- Apptentive Android SDK: 6.8.0
- Apptentive iOS SDK: 6.8.1
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ This document lets you know what has changed in the React Native module. For cha
- [Android Changelog](https://github.com/apptentive/apptentive-kit-android/blob/master/CHANGELOG.md)
- [iOS Changelog](https://github.com/apptentive/apptentive-kit-ios/blob/main/CHANGELOG.md)

# 2024-06-26 - v6.8.0

- Apptentive Android SDK: 6.8.0
- Apptentive iOS SDK: 6.8.1

# 2024-04-24 - v6.7.0

- Apptentive Android SDK: 6.7.0
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"

// Apptentive
implementation 'com.apptentive:apptentive-kit-android:6.7.0'
implementation 'com.apptentive:apptentive-kit-android:6.8.0'
}

if (isNewArchitectureEnabled()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,6 @@ class ApptentiveModule(private val reactContext: ReactApplicationContext) :
return currentActivity
}

override fun hasConstants(): Boolean {
return true
}

override fun getConstants(): MutableMap<String, Any> {
return mutableMapOf("unreadMessageCountChangedEvent" to UNREAD_MESSAGE_COUNT_CHANGED)
}
Expand Down
2 changes: 1 addition & 1 deletion apptentive-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Pod::Spec.new do |s|

s.source_files = "ios/**/*.{h,m,mm,swift}"

s.dependency 'ApptentiveKit', '~> 6.7.0'
s.dependency 'ApptentiveKit', '~> 6.8.1'
s.dependency "React-Core"
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "apptentive-react-native",
"version": "6.7.0",
"version": "6.8.0",
"description": "React Native Module for Apptentive SDK",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit e2a4b33

Please sign in to comment.