Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.4"),
.package(url: "https://github.com/tryvital/vital-ios", from: "1.8.5"),
```

Then add the Vital iOS library products you need to your app and/or library targets:
Expand All @@ -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.8.4"
pod "VitalDevices", "~> 1.8.4"
pod "VitalHealthKit", "~> 1.8.4"
pod "VitalCore", "~> 1.8.5"
pod "VitalDevices", "~> 1.8.5"
pod "VitalHealthKit", "~> 1.8.5"
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion Sources/VitalCore/Core/Client/VitalClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public enum AuthenticateRequest {
}

@objc public class VitalClient: NSObject {
public static let sdkVersion = "1.8.4"
public static let sdkVersion = "1.8.5"

@_spi(VitalSDKInternals)
public let configuration: ProtectedBox<VitalCoreConfiguration>
Expand Down
4 changes: 2 additions & 2 deletions VitalCore.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'VitalCore'
s.version = '1.8.4'
s.version = '1.8.5'
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'
Expand All @@ -15,6 +15,6 @@ Pod::Spec.new do |s|

s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }

s.dependency 'VitalLogging', '~> 1.8.4'
s.dependency 'VitalLogging', '~> 1.8.5'
end

4 changes: 2 additions & 2 deletions VitalDevices.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'VitalDevices'
s.version = '1.8.4'
s.version = '1.8.5'
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'
Expand All @@ -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.8.4'
s.dependency 'VitalCore', '~> 1.8.5'
s.dependency 'CombineCoreBluetooth', '~> 0.3.1'

s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
Expand Down
4 changes: 2 additions & 2 deletions VitalHealthKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'VitalHealthKit'
s.version = '1.8.4'
s.version = '1.8.5'
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'
Expand All @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.swift_versions = ['5']
s.source_files = 'Sources/VitalHealthKit/**/*.swift'

s.dependency 'VitalCore', '~> 1.8.4'
s.dependency 'VitalCore', '~> 1.8.5'

s.pod_target_xcconfig = {
'DEFINES_MODULE' => 'YES',
Expand Down
2 changes: 1 addition & 1 deletion VitalLogging.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'VitalLogging'
s.version = '1.8.4'
s.version = '1.8.5'
s.license = 'Apache 2.0'
s.summary = 'Logging support for VitalCore'
s.homepage = 'https://github.com/tryVital/vital-ios'
Expand Down