Skip to content

Commit bf85925

Browse files
committed
1.6.2 preps
1 parent 40a8558 commit bf85925

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.6.2] - 23.10.2021.
2+
3+
* Fix timestamps bug
4+
* add from dictionary static factory for HeartbeatSeries
5+
16
## [1.6.1] - 15.10.2021.
27

38
* return HeartbeatSeries as a collection of samples, each has own collection of measurements

Example/HealthKitReporter.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@
474474
GCC_WARN_UNUSED_FUNCTION = YES;
475475
GCC_WARN_UNUSED_VARIABLE = YES;
476476
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
477-
MARKETING_VERSION = 1.6.1;
477+
MARKETING_VERSION = 1.6.2;
478478
MTL_ENABLE_DEBUG_INFO = YES;
479479
ONLY_ACTIVE_ARCH = YES;
480480
SDKROOT = iphoneos;
@@ -525,7 +525,7 @@
525525
GCC_WARN_UNUSED_FUNCTION = YES;
526526
GCC_WARN_UNUSED_VARIABLE = YES;
527527
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
528-
MARKETING_VERSION = 1.6.1;
528+
MARKETING_VERSION = 1.6.2;
529529
MTL_ENABLE_DEBUG_INFO = NO;
530530
SDKROOT = iphoneos;
531531
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

HealthKitReporter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'HealthKitReporter'
11-
s.version = '1.6.1'
11+
s.version = '1.6.2'
1212
s.summary = 'HealthKitReporter. A wrapper for HealthKit framework.'
1313
s.swift_versions = '5.3'
1414
s.description = 'Helps to write or read data from Apple Health via HealthKit framework.'

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ pod 'HealthKitReporter'
305305
or
306306

307307
```ruby
308-
pod 'HealthKitReporter', '~> 1.6.1'
308+
pod 'HealthKitReporter', '~> 1.6.2'
309309
```
310310

311311
### Swift Package Manager
@@ -315,7 +315,7 @@ To install it, simply add the following lines to your Package.swift file
315315

316316
```swift
317317
dependencies: [
318-
.package(url: "https://github.com/VictorKachalov/HealthKitReporter.git", from: "1.6.1")
318+
.package(url: "https://github.com/VictorKachalov/HealthKitReporter.git", from: "1.6.2")
319319
]
320320
```
321321

@@ -324,7 +324,7 @@ dependencies: [
324324
Add the line in your cartfile
325325

326326
```ruby
327-
github "VictorKachalov/HealthKitReporter" "1.6.1"
327+
github "VictorKachalov/HealthKitReporter" "1.6.2"
328328
```
329329

330330
## Author

0 commit comments

Comments
 (0)