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 +7 -0
- package/CONTRIBUTING.md +9 -9
- package/README.md +1 -1
- package/android/gradle.properties +1 -1
- package/hypertrack-sdk-react-native.podspec +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
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
|
-
|
|
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
|

|
|
4
4
|

|
|
5
|
-

|
|
6
6
|

|
|
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.
|
|
@@ -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.
|
|
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",
|