@blueconic/blueconic-react-native 5.1.0 → 5.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/android/build.gradle +2 -2
- package/ios/BlueConicClientModule.swift +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
`@blueconic/blueconic-react-native` adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
4
|
|
|
5
|
+
## [5.1.1] 2025-10-22
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- React-iOS: Fixed an issue with concurrent read/write in some causing EXC_BAD_ACCESS crash.
|
|
9
|
+
|
|
5
10
|
## [5.1.0] 2025-10-01
|
|
6
11
|
|
|
7
12
|
### Added
|
package/android/build.gradle
CHANGED
|
@@ -25,9 +25,9 @@ android {
|
|
|
25
25
|
minSdkVersion 21
|
|
26
26
|
targetSdkVersion 36
|
|
27
27
|
versionCode 510
|
|
28
|
-
versionName "5.1.
|
|
28
|
+
versionName "5.1.1"
|
|
29
29
|
buildConfigField 'String', 'PLATFORM_NAME', "\"React Native\""
|
|
30
|
-
buildConfigField 'String', 'PLATFORM_VERSION', "\"5.1.
|
|
30
|
+
buildConfigField 'String', 'PLATFORM_VERSION', "\"5.1.1\""
|
|
31
31
|
}
|
|
32
32
|
lintOptions {
|
|
33
33
|
abortOnError false
|
|
@@ -9,7 +9,7 @@ import BlueConicClient
|
|
|
9
9
|
@objc(BlueConicClientModule)
|
|
10
10
|
class BlueConicClientModule: RCTEventEmitter {
|
|
11
11
|
private static var platformName: String = "React Native"
|
|
12
|
-
private static var platformVersion: String = "5.1.
|
|
12
|
+
private static var platformVersion: String = "5.1.1"
|
|
13
13
|
private static var moduleInstance: BlueConicClientModule?
|
|
14
14
|
private static var hasListeners: Bool?
|
|
15
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueconic/blueconic-react-native",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
4
4
|
"description": "The BlueConicClient Framework provides the basis for communicating with BlueConic.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"license": "SEE LICENSE IN LICENSE",
|
|
28
28
|
"nativeDependencies": {
|
|
29
29
|
"android": "7.1.0",
|
|
30
|
-
"ios": "5.1.
|
|
30
|
+
"ios": "5.1.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react-native": "<1.0.0"
|