diff --git a/README.md b/README.md index c9bfc898..faf1cf36 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: "0.11.0"), +.package(url: "https://github.com/tryvital/vital-ios", from: "0.11.1"), ``` 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", "~> 0.11.0" -pod "VitalDevices", "~> 0.11.0" -pod "VitalHealthKit", "~> 0.11.0" +pod "VitalCore", "~> 0.11.1" +pod "VitalDevices", "~> 0.11.1" +pod "VitalHealthKit", "~> 0.11.1" ``` ## Documentation diff --git a/Sources/VitalCore/Core/Client/VitalClient.swift b/Sources/VitalCore/Core/Client/VitalClient.swift index 8f1272f3..211af1d0 100644 --- a/Sources/VitalCore/Core/Client/VitalClient.swift +++ b/Sources/VitalCore/Core/Client/VitalClient.swift @@ -162,7 +162,7 @@ let core_secureStorageKey: String = "core_secureStorageKey" let user_secureStorageKey: String = "user_secureStorageKey" @objc public class VitalClient: NSObject { - public static let sdkVersion = "0.11.0" + public static let sdkVersion = "0.11.1" private let secureStorage: VitalSecureStorage let configuration: ProtectedBox diff --git a/VitalCore.podspec b/VitalCore.podspec index b9bcbe2a..4d2bd9e2 100644 --- a/VitalCore.podspec +++ b/VitalCore.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalCore' - s.version = '0.11.0' + s.version = '0.11.1' 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' diff --git a/VitalDevices.podspec b/VitalDevices.podspec index 4b991a1c..2658ea16 100644 --- a/VitalDevices.podspec +++ b/VitalDevices.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalDevices' - s.version = '0.11.0' + s.version = '0.11.1' 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', '~> 0.11.0' + s.dependency 'VitalCore', '~> 0.11.1' s.dependency 'CombineCoreBluetooth', '~> 0.3.1' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } diff --git a/VitalHealthKit.podspec b/VitalHealthKit.podspec index 3505783b..f200d26f 100644 --- a/VitalHealthKit.podspec +++ b/VitalHealthKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'VitalHealthKit' - s.version = '0.11.0' + s.version = '0.11.1' 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', '~> 0.11.0' + s.dependency 'VitalCore', '~> 0.11.1' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } end