From cdf6fa9facbb7dd2dfd23bc8597766d6a9aac433 Mon Sep 17 00:00:00 2001 From: kvs Date: Tue, 12 Oct 2021 17:56:11 +0200 Subject: [PATCH] 1.6.0 preps --- CHANGELOG.md | 4 ++++ Example/HealthKitReporter.xcodeproj/project.pbxproj | 4 ++-- Example/Pods/Pods.xcodeproj/project.pbxproj | 4 ++-- HealthKitReporter.podspec | 2 +- README.md | 6 +++--- 5 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98a9f7..41e3dcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.6.0] - 12.10.2021. + +* heartbeatSeriesQuery changed as HeartbeatSeries now is a valid sample with a set of beat by beat measurements + ## [1.5.3] - 05.09.2021. * Sample app adjustments diff --git a/Example/HealthKitReporter.xcodeproj/project.pbxproj b/Example/HealthKitReporter.xcodeproj/project.pbxproj index 2c27966..da866c4 100644 --- a/Example/HealthKitReporter.xcodeproj/project.pbxproj +++ b/Example/HealthKitReporter.xcodeproj/project.pbxproj @@ -474,7 +474,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.6.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -525,7 +525,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.6.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index ea8ab67..c1e8de4 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -1006,7 +1006,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.6.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -1070,7 +1070,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MARKETING_VERSION = 1.5.3; + MARKETING_VERSION = 1.6.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; diff --git a/HealthKitReporter.podspec b/HealthKitReporter.podspec index 19a4e7d..389fc80 100644 --- a/HealthKitReporter.podspec +++ b/HealthKitReporter.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'HealthKitReporter' - s.version = '1.5.3' + s.version = '1.6.0' s.summary = 'HealthKitReporter. A wrapper for HealthKit framework.' s.swift_versions = '5.3' s.description = 'Helps to write or read data from Apple Health via HealthKit framework.' diff --git a/README.md b/README.md index 6552aec..cb240ed 100644 --- a/README.md +++ b/README.md @@ -305,7 +305,7 @@ pod 'HealthKitReporter' or ```ruby -pod 'HealthKitReporter', '~> 1.5.3' +pod 'HealthKitReporter', '~> 1.6.0' ``` ### Swift Package Manager @@ -315,7 +315,7 @@ To install it, simply add the following lines to your Package.swift file ```swift dependencies: [ - .package(url: "https://github.com/VictorKachalov/HealthKitReporter.git", from: "1.5.3") + .package(url: "https://github.com/VictorKachalov/HealthKitReporter.git", from: "1.6.0") ] ``` @@ -324,7 +324,7 @@ dependencies: [ Add the line in your cartfile ```ruby -github "VictorKachalov/HealthKitReporter" "1.5.3" +github "VictorKachalov/HealthKitReporter" "1.6.0" ``` ## Author