Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.2.7 #245

Merged
merged 1 commit into from
Sep 18, 2024
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.2.6"),
.package(url: "https://github.com/tryvital/vital-ios", from: "1.2.7"),
```

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.2.6"
pod "VitalDevices", "~> 1.2.6"
pod "VitalHealthKit", "~> 1.2.6"
pod "VitalCore", "~> 1.2.7"
pod "VitalDevices", "~> 1.2.7"
pod "VitalHealthKit", "~> 1.2.7"
```

## 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 @@ -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.6"
public static let sdkVersion = "1.2.7"

private let secureStorage: VitalSecureStorage

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.2.6'
s.version = '1.2.7'
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.2.6'
s.dependency 'VitalLogging', '~> 1.2.7'
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.2.6'
s.version = '1.2.7'
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.2.6'
s.dependency 'VitalCore', '~> 1.2.7'
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.2.6'
s.version = '1.2.7'
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.2.6'
s.dependency 'VitalCore', '~> 1.2.7'

s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
end
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.2.6'
s.version = '1.2.7'
s.license = 'Apache 2.0'
s.summary = 'Logging support for VitalCore'
s.homepage = 'https://github.com/tryVital/vital-ios'
Expand Down