Skip to content

Commit 7918398

Browse files
fix typo, 1.3.4 preps
1 parent bc8a5da commit 7918398

File tree

9 files changed

+16
-10
lines changed

9 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.3.4] - 01.02.2021.
2+
3+
* Added UUID property for Wrappers of original HKObjectTypes
4+
15
## [1.3.3] - 27.01.2021.
26

37
* Added more CategoryType enum cases (iOS 14)

Example/HealthKitReporter.xcodeproj/project.pbxproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@
509509
GCC_WARN_UNUSED_FUNCTION = YES;
510510
GCC_WARN_UNUSED_VARIABLE = YES;
511511
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
512-
MARKETING_VERSION = 1.3.3;
512+
MARKETING_VERSION = 1.3.4;
513513
MTL_ENABLE_DEBUG_INFO = YES;
514514
ONLY_ACTIVE_ARCH = YES;
515515
SDKROOT = iphoneos;
@@ -560,7 +560,7 @@
560560
GCC_WARN_UNUSED_FUNCTION = YES;
561561
GCC_WARN_UNUSED_VARIABLE = YES;
562562
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
563-
MARKETING_VERSION = 1.3.3;
563+
MARKETING_VERSION = 1.3.4;
564564
MTL_ENABLE_DEBUG_INFO = NO;
565565
SDKROOT = iphoneos;
566566
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -578,6 +578,7 @@
578578
INFOPLIST_FILE = HealthKitReporter/Info.plist;
579579
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
580580
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
581+
MARKETING_VERSION = 1.3.4;
581582
MODULE_NAME = ExampleApp;
582583
PRODUCT_BUNDLE_IDENTIFIER = "com.kvs.demo.$(PRODUCT_NAME:rfc1034identifier)";
583584
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -596,6 +597,7 @@
596597
INFOPLIST_FILE = HealthKitReporter/Info.plist;
597598
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
598599
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
600+
MARKETING_VERSION = 1.3.4;
599601
MODULE_NAME = ExampleApp;
600602
PRODUCT_BUNDLE_IDENTIFIER = "com.kvs.demo.$(PRODUCT_NAME:rfc1034identifier)";
601603
PRODUCT_NAME = "$(TARGET_NAME)";

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.3.3'
11+
s.version = '1.3.4'
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.'

HealthKitReporter/Classes/Model/Payload/Category.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ extension Category: Original {
8585
func asOriginal() throws -> HKCategorySample {
8686
guard let type = identifier.objectType?.original as? HKCategoryType else {
8787
throw HealthKitError.invalidType(
88-
"Category type identifier: \(identifier) could not be foramtted"
88+
"Category type identifier: \(identifier) could not be formatted"
8989
)
9090
}
9191
return HKCategorySample(

HealthKitReporter/Classes/Model/Payload/Correlation.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ extension Correlation: Original {
6969
func asOriginal() throws -> HKCorrelation {
7070
guard let type = identifier.objectType?.original as? HKCorrelationType else {
7171
throw HealthKitError.invalidType(
72-
"Correlation type identifier: \(identifier) could not be foramtted"
72+
"Correlation type identifier: \(identifier) could not be formatted"
7373
)
7474
}
7575
var set = Set<HKSample>()

HealthKitReporter/Classes/Model/Payload/Quantity.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ extension Quantity: Original {
101101
func asOriginal() throws -> HKQuantitySample {
102102
guard let type = identifier.objectType?.original as? HKQuantityType else {
103103
throw HealthKitError.invalidType(
104-
"Quantitiy type identifier: \(identifier) could not be foramtted"
104+
"Quantitiy type identifier: \(identifier) could not be formatted"
105105
)
106106
}
107107
return HKQuantitySample(

HealthKitReporter/Classes/Model/Payload/Workout.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ extension Workout: Original {
129129
func asOriginal() throws -> HKWorkout {
130130
guard let activityType = HKWorkoutActivityType(rawValue: UInt(harmonized.value)) else {
131131
throw HealthKitError.invalidType(
132-
"Workout type: \(harmonized.value) could not be foramtted"
132+
"Workout type: \(harmonized.value) could not be formatted"
133133
)
134134
}
135135
return HKWorkout(

HealthKitReporter/Classes/Model/Payload/WorkoutEvent.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ extension WorkoutEvent: Original {
5858
func asOriginal() throws -> HKWorkoutEvent {
5959
guard let type = HKWorkoutEventType(rawValue: harmonized.value) else {
6060
throw HealthKitError.invalidType(
61-
"WorkoutEvent type: \(harmonized.value) could not be foramtted"
61+
"WorkoutEvent type: \(harmonized.value) could not be formatted"
6262
)
6363
}
6464
return HKWorkoutEvent(

0 commit comments

Comments
 (0)