hypertrack-sdk-react-native 10.0.1 → 10.0.2-psl19.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 CHANGED
@@ -3,6 +3,12 @@
3
3
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
4
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [10.0.2] - 2023-06-16
7
+
8
+ ### Changed
9
+
10
+ - Updated HyperTrack iOS SDK to 4.16.1
11
+
6
12
  ## [10.0.1] - 2023-06-13
7
13
 
8
14
  ### Changed
@@ -520,6 +526,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
520
526
 
521
527
  Initial release.
522
528
 
529
+ [10.0.2]: https://github.com/hypertrack/sdk-react-native/releases/tag/10.0.2
523
530
  [10.0.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/10.0.1
524
531
  [10.0.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/10.0.0
525
532
  [9.2.2]: https://github.com/hypertrack/sdk-react-native/releases/tag/9.2.2
package/CONTRIBUTING.md CHANGED
@@ -7,27 +7,27 @@
7
7
  1. Update SDK version constant
8
8
 
9
9
  - android
10
- - android/gradle.properties - HyperTrackSdk_HyperTrackSDKVersion
10
+ - [android/gradle.properties](android/gradle.properties)
11
+ - HyperTrackSdk_HyperTrackSDKVersion
11
12
  - ios
12
- - hypertrack-sdk-react-native.podspec
13
+ - [hypertrack-sdk-react-native.podspec](hypertrack-sdk-react-native.podspec)
13
14
  - s.dependency 'HyperTrack/Objective-C', '**version**'
14
15
 
15
16
  2. Increment wrapper version
16
17
 
17
- - package.json
18
+ - [package.json](package.json)
18
19
  - version
19
20
 
20
- 3. Update CHANGELOG.md
21
+ 3. Update [CHANGELOG](CHANGELOG.md)
21
22
 
22
- - Add the release link to the bottom
23
+ - **Add the release link to the bottom**
23
24
 
24
- 4. Update badge in README.md
25
+ 4. Update badge in [README](README.md)
25
26
  5. Do the release dry run with `just release` and verify that the release is correct (checklist is in the command output)
26
27
  6. Commit and merge to master
27
- 7. Create and push a new version tag
28
- 8. Create a Github repo release
28
+ 7. Create a Github repo release
29
29
  - Release title should be the current version tag
30
- 9. Run `npm publish` to publish the package to npm
30
+ 8. Run `npm publish` to publish the package to npm
31
31
 
32
32
  ### How to change build config
33
33
 
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ![GitHub](https://img.shields.io/github/license/hypertrack/sdk-react-native.svg)
4
4
  ![npm](https://img.shields.io/npm/v/hypertrack-sdk-react-native.svg)
5
- ![iOS SDK](https://img.shields.io/badge/iOS%20SDK-4.16.0-brightgreen.svg)
5
+ ![iOS SDK](https://img.shields.io/badge/iOS%20SDK-4.16.1-brightgreen.svg)
6
6
  ![Android SDK](https://img.shields.io/badge/Android%20SDK-6.4.2-brightgreen.svg)
7
7
 
8
8
  [HyperTrack](https://www.hypertrack.com) lets you add live location tracking to your mobile app. Live location is made available along with ongoing activity, tracking controls and tracking outage with reasons.
@@ -2,5 +2,5 @@ HyperTrackSdk_kotlinVersion=1.6.21
2
2
  HyperTrackSdk_minSdkVersion=23
3
3
  HyperTrackSdk_targetSdkVersion=30
4
4
  HyperTrackSdk_compileSdkVersion=31
5
- HyperTrackSdk_HyperTrackSDKVersion=6.4.2
5
+ HyperTrackSdk_HyperTrackSDKVersion=6.4.2-psl19.1
6
6
  android.useAndroidX=true
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
18
18
  s.source_files = "ios/**/*.{h,m,mm,swift}"
19
19
 
20
20
  s.dependency "React-Core"
21
- s.dependency 'HyperTrack/Objective-C', '4.16.0'
21
+ s.dependency 'HyperTrack/Objective-C', '4.16.1'
22
22
 
23
23
  # Don't install the dependencies when we run `pod install` in the old architecture.
24
24
  if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hypertrack-sdk-react-native",
3
- "version": "10.0.1",
3
+ "version": "10.0.2-psl19.1",
4
4
  "description": "React Native HyperTrack SDK is a wrapper around native iOS and Android SDKs that allows to integrate HyperTrack into React Native apps.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",