From 2d9129c9d8d079d51eb77cb45a393db66e19a8c2 Mon Sep 17 00:00:00 2001 From: Anders Ha Date: Fri, 8 Nov 2024 18:55:25 +0000 Subject: [PATCH] Release 1.2.10 (#252) --- README.md | 8 ++++---- Sources/VitalCore/Core/Client/VitalClient.swift | 2 +- VitalCore.podspec | 4 ++-- VitalDevices.podspec | 4 ++-- VitalHealthKit.podspec | 4 ++-- VitalLogging.podspec | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index f1008ee1..3f5345f7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ We support Swift Package Manager and CocoaPods. Add the vital-ios package to your Package.swift. ```swift -.package(url: "https://github.com/tryvital/vital-ios", from: "1.2.9"), +.package(url: "https://github.com/tryvital/vital-ios", from: "1.2.10"), ``` Then add the Vital iOS library products you need to your app and/or library targets: @@ -29,9 +29,9 @@ Then add the Vital iOS library products you need to your app and/or library targ Add the Vital iOS library products you need to your Podfile: ``` -pod "VitalCore", "~> 1.2.9" -pod "VitalDevices", "~> 1.2.9" -pod "VitalHealthKit", "~> 1.2.9" +pod "VitalCore", "~> 1.2.10" +pod "VitalDevices", "~> 1.2.10" +pod "VitalHealthKit", "~> 1.2.10" ``` ## Documentation diff --git a/Sources/VitalCore/Core/Client/VitalClient.swift b/Sources/VitalCore/Core/Client/VitalClient.swift index ca1c0cc5..56e56e7b 100644 --- a/Sources/VitalCore/Core/Client/VitalClient.swift +++ b/Sources/VitalCore/Core/Client/VitalClient.swift @@ -156,7 +156,7 @@ let user_secureStorageKey: String = "user_secureStorageKey" public let health_secureStorageKey: String = "health_secureStorageKey" @objc public class VitalClient: NSObject { - public static let sdkVersion = "1.2.9" + public static let sdkVersion = "1.2.10" private let secureStorage: VitalSecureStorage diff --git a/VitalCore.podspec b/VitalCore.podspec index 04b194da..37fa42fd 100644 --- a/VitalCore.podspec +++ b/VitalCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalCore' - s.version = '1.2.9' + s.version = '1.2.10' s.license = 'AGPL v3.0' s.summary = 'The official Swift Library for Vital API, HealthKit and Devices' s.homepage = 'https://github.com/tryVital/vital-ios' @@ -15,6 +15,6 @@ Pod::Spec.new do |s| s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } - s.dependency 'VitalLogging', '~> 1.2.9' + s.dependency 'VitalLogging', '~> 1.2.10' end diff --git a/VitalDevices.podspec b/VitalDevices.podspec index 6fce246f..73758875 100644 --- a/VitalDevices.podspec +++ b/VitalDevices.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalDevices' - s.version = '1.2.9' + s.version = '1.2.10' s.license = 'AGPL v3.0' s.summary = 'The official Swift Library for Vital API, HealthKit and Devices' s.homepage = 'https://github.com/tryVital/vital-ios' @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.source_files = 'Sources/VitalDevices/**/*.swift' s.frameworks = ['CoreNFC', 'AVFoundation', 'CoreBluetooth', 'Combine', 'CryptoKit'] - s.dependency 'VitalCore', '~> 1.2.9' + s.dependency 'VitalCore', '~> 1.2.10' s.dependency 'CombineCoreBluetooth', '~> 0.3.1' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } diff --git a/VitalHealthKit.podspec b/VitalHealthKit.podspec index 6e63805e..170e73fb 100644 --- a/VitalHealthKit.podspec +++ b/VitalHealthKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalHealthKit' - s.version = '1.2.9' + s.version = '1.2.10' s.license = 'AGPL v3.0' s.summary = 'The official Swift Library for Vital API, HealthKit and Devices' s.homepage = 'https://github.com/tryVital/vital-ios' @@ -13,7 +13,7 @@ Pod::Spec.new do |s| s.swift_versions = ['5'] s.source_files = 'Sources/VitalHealthKit/**/*.swift' - s.dependency 'VitalCore', '~> 1.2.9' + s.dependency 'VitalCore', '~> 1.2.10' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } end diff --git a/VitalLogging.podspec b/VitalLogging.podspec index 248cc314..f906a116 100644 --- a/VitalLogging.podspec +++ b/VitalLogging.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalLogging' - s.version = '1.2.9' + s.version = '1.2.10' s.license = 'Apache 2.0' s.summary = 'Logging support for VitalCore' s.homepage = 'https://github.com/tryVital/vital-ios'