hypertrack-sdk-react-native 7.10.0 → 7.13.0
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 +20 -0
- package/README.md +26 -2
- package/android/build.gradle +1 -1
- package/hypertrack-sdk-react-native.podspec +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [7.13.0] - 2022-01-05
|
|
8
|
+
### Changed
|
|
9
|
+
- Updated iOS SDK to [4.9.0](https://github.com/hypertrack/sdk-ios/blob/master/CHANGELOG.md#490---2022-01-05)
|
|
10
|
+
|
|
11
|
+
## [7.12.1] - 2021-11-11
|
|
12
|
+
### Changed
|
|
13
|
+
- Updated Android SDK to [5.4.5](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#545---2021-11-05)
|
|
14
|
+
|
|
15
|
+
## [7.12.0] - 2021-10-29
|
|
16
|
+
### Changed
|
|
17
|
+
- Updated Android SDK to [5.4.4](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#544---2021-10-29)
|
|
18
|
+
|
|
19
|
+
## [7.11.0] - 2021-10-28
|
|
20
|
+
### Changed
|
|
21
|
+
- Updated Android SDK to [5.4.3](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#543---2021-09-01)
|
|
22
|
+
|
|
7
23
|
## [7.10.0] - 2021-08-04
|
|
8
24
|
### Changed
|
|
9
25
|
- Updated Android SDK to [5.4.0](https://github.com/hypertrack/sdk-android/blob/master/CHANGELOG.md#540---2021-08-04)
|
|
@@ -216,6 +232,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
216
232
|
## [1.0.0] - 2019-06-07
|
|
217
233
|
Initial release.
|
|
218
234
|
|
|
235
|
+
[7.13.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.13.0
|
|
236
|
+
[7.12.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.12.1
|
|
237
|
+
[7.12.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.12.0
|
|
238
|
+
[7.11.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.11.0
|
|
219
239
|
[7.10.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.10.0
|
|
220
240
|
[7.9.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.9.0
|
|
221
241
|
[7.8.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.8.1
|
package/README.md
CHANGED
|
@@ -2,11 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|

|
|
5
|
-
[](https://cocoapods.org/pods/HyperTrack)
|
|
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.
|
|
9
9
|
|
|
10
10
|
React Native HyperTrack SDK is a wrapper around native iOS and Android SDKs that allows to integrate them into React Native apps.
|
|
11
11
|
|
|
12
12
|
For information about how to get started with React Native SDK, please visit this [HyperTrack Guide](https://www.hypertrack.com/docs/install-sdk-react-native).
|
|
13
|
+
|
|
14
|
+
## How to update the HyperTrack SDK version?
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
1. Update SDK constant
|
|
18
|
+
|
|
19
|
+
- android
|
|
20
|
+
- android/build.gradle
|
|
21
|
+
- DEFAULT_HYPERTRACK_SDK_VERSION
|
|
22
|
+
- ios
|
|
23
|
+
- hypertrack-sdk-react-native.podspec
|
|
24
|
+
- s.dependency 'HyperTrack/Objective-C', '**version**'
|
|
25
|
+
|
|
26
|
+
2. Increment wrapper version
|
|
27
|
+
- package.json
|
|
28
|
+
- version
|
|
29
|
+
|
|
30
|
+
3. Update changelog
|
|
31
|
+
4. Update badge in README.md
|
|
32
|
+
5. Create a version tag
|
|
33
|
+
6. Commit and push
|
|
34
|
+
7. Create a release
|
|
35
|
+
- Release title - version
|
|
36
|
+
9. npm publish
|
package/android/build.gradle
CHANGED
|
@@ -15,7 +15,7 @@ def DEFAULT_COMPILE_SDK_VERSION = 30
|
|
|
15
15
|
def DEFAULT_BUILD_TOOLS_VERSION = "30.0.2"
|
|
16
16
|
def DEFAULT_MIN_SDK_VERSION = 21
|
|
17
17
|
def DEFAULT_TARGET_SDK_VERSION = 30
|
|
18
|
-
def DEFAULT_HYPERTRACK_SDK_VERSION = "5.4.
|
|
18
|
+
def DEFAULT_HYPERTRACK_SDK_VERSION = "5.4.5"
|
|
19
19
|
|
|
20
20
|
def HYPERTRACK_SDK_VERSION = rootProject.hasProperty('hypertrackSdkVersion') ? rootProject.hypertrackSdkVersion : DEFAULT_HYPERTRACK_SDK_VERSION
|
|
21
21
|
|
|
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
|
|
|
12
12
|
s.source = { :git => 'https://github.com/hypertrack/sdk-react-native.git' }
|
|
13
13
|
s.platform = :ios, '11.0'
|
|
14
14
|
s.dependency 'React-Core'
|
|
15
|
-
s.dependency 'HyperTrack/Objective-C', '4.
|
|
15
|
+
s.dependency 'HyperTrack/Objective-C', '4.9.0'
|
|
16
16
|
s.source_files = "ios/*.{xcodeproj}", "ios/RNHyperTrack/*.{h,m}"
|
|
17
17
|
s.cocoapods_version = '>= 1.10.0'
|
|
18
18
|
end
|
package/package.json
CHANGED