Skip to content

Commit e2a4b33

Browse files
authored
Merge pull request #260 from apptentive/develop
Release 6.8.0
2 parents ec46e4b + ba60491 commit e2a4b33

7 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/complete-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
tag-and-release:
1212
# Run only after release PR branch is merged
13-
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/')
13+
if: github.event.pull_request.merged == true && github.head_ref == 'develop'
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout

.scripts/changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- Apptentive Android SDK: 6.7.0
2-
- Apptentive iOS SDK: 6.7.0
1+
- Apptentive Android SDK: 6.8.0
2+
- Apptentive iOS SDK: 6.8.1

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ This document lets you know what has changed in the React Native module. For cha
55
- [Android Changelog](https://github.com/apptentive/apptentive-kit-android/blob/master/CHANGELOG.md)
66
- [iOS Changelog](https://github.com/apptentive/apptentive-kit-ios/blob/main/CHANGELOG.md)
77

8+
# 2024-06-26 - v6.8.0
9+
10+
- Apptentive Android SDK: 6.8.0
11+
- Apptentive iOS SDK: 6.8.1
12+
813
# 2024-04-24 - v6.7.0
914

1015
- Apptentive Android SDK: 6.7.0

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependencies {
7373
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
7474

7575
// Apptentive
76-
implementation 'com.apptentive:apptentive-kit-android:6.7.0'
76+
implementation 'com.apptentive:apptentive-kit-android:6.8.0'
7777
}
7878

7979
if (isNewArchitectureEnabled()) {

android/src/main/java/com/apptentive/android/sdk/reactlibrary/ApptentiveModule.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,10 +356,6 @@ class ApptentiveModule(private val reactContext: ReactApplicationContext) :
356356
return currentActivity
357357
}
358358

359-
override fun hasConstants(): Boolean {
360-
return true
361-
}
362-
363359
override fun getConstants(): MutableMap<String, Any> {
364360
return mutableMapOf("unreadMessageCountChangedEvent" to UNREAD_MESSAGE_COUNT_CHANGED)
365361
}

apptentive-react-native.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Pod::Spec.new do |s|
1515

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

18-
s.dependency 'ApptentiveKit', '~> 6.7.0'
18+
s.dependency 'ApptentiveKit', '~> 6.8.1'
1919
s.dependency "React-Core"
2020
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "apptentive-react-native",
3-
"version": "6.7.0",
3+
"version": "6.8.0",
44
"description": "React Native Module for Apptentive SDK",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)