Skip to content

Commit 50623ab

Browse files
committed
Release 8.2.1
1 parent 7b898e9 commit 50623ab

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [8.2.1] - 2022-09-27
8+
### Fixed
9+
- enableDebugLogging() now doesn't cause an infinite loop when called.
10+
711
## [8.2.0] - 2022-09-23
812
### Changed
913
- Updated Android SDK to 6.3.0 and iOS SDK to 4.13.0
@@ -303,6 +307,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
303307
Initial release.
304308

305309

310+
[8.2.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/8.2.1
311+
[8.2.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/8.2.0
312+
[8.1.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/8.1.0
313+
[8.0.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/8.0.0
306314
[7.19.1]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.19.1
307315
[7.19.0]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.19.0
308316
[7.18.4]: https://github.com/hypertrack/sdk-react-native/releases/tag/7.18.4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hypertrack-sdk-react-native",
3-
"version": "8.2.0",
3+
"version": "8.2.1",
44
"description": "test",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

src/HyperTrack/HyperTrack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export default class HyperTrack {
134134
* production build.
135135
*/
136136
static enableDebugLogging(enable: boolean) {
137-
HyperTrack.enableDebugLogging(enable);
137+
HyperTrackSdk.enableDebugLogging(enable);
138138
}
139139

140140
/**

0 commit comments

Comments
 (0)