From 60f2214215d7542762c0bfd7775edc7c95086096 Mon Sep 17 00:00:00 2001 From: kvs Date: Sat, 29 Oct 2022 19:42:55 +0200 Subject: [PATCH] 1.7.0 preps --- CHANGELOG.md | 4 ++++ Example/HealthKitReporter.xcodeproj/project.pbxproj | 4 ++-- HealthKitReporter.podspec | 2 +- README.md | 6 +++--- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0af83b..a61ab7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.7.0] - 29.10.2022. + +* Add new iOS 16 types (also missing iOS 15 types) + ## [1.6.9] - 27.05.2022. * Add copyWith methods to Correlation diff --git a/Example/HealthKitReporter.xcodeproj/project.pbxproj b/Example/HealthKitReporter.xcodeproj/project.pbxproj index 49713ea..5e3b161 100644 --- a/Example/HealthKitReporter.xcodeproj/project.pbxproj +++ b/Example/HealthKitReporter.xcodeproj/project.pbxproj @@ -478,7 +478,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.6.9; + MARKETING_VERSION = 1.7.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -529,7 +529,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 1.6.9; + MARKETING_VERSION = 1.7.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; diff --git a/HealthKitReporter.podspec b/HealthKitReporter.podspec index 8f45bc9..e14295f 100644 --- a/HealthKitReporter.podspec +++ b/HealthKitReporter.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'HealthKitReporter' - s.version = '1.6.9' + s.version = '1.7.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 03dcdad..93229df 100644 --- a/README.md +++ b/README.md @@ -305,7 +305,7 @@ pod 'HealthKitReporter' or ```ruby -pod 'HealthKitReporter', '~> 1.6.9' +pod 'HealthKitReporter', '~> 1.7.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.6.9") + .package(url: "https://github.com/VictorKachalov/HealthKitReporter.git", from: "1.7.0") ] ``` @@ -324,7 +324,7 @@ dependencies: [ Add the line in your cartfile ```ruby -github "VictorKachalov/HealthKitReporter" "1.6.9" +github "VictorKachalov/HealthKitReporter" "1.7.0" ``` ## Author