Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio committed Dec 19, 2024
1 parent c8857f0 commit 7b948ad
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
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.3.0"),
.package(url: "https://github.com/tryvital/vital-ios", from: "1.3.1"),
```

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.3.0"
pod "VitalDevices", "~> 1.3.0"
pod "VitalHealthKit", "~> 1.3.0"
pod "VitalCore", "~> 1.3.1"
pod "VitalDevices", "~> 1.3.1"
pod "VitalHealthKit", "~> 1.3.1"
```

## 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.3.0"
public static let sdkVersion = "1.3.1"

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.3.0'
s.version = '1.3.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'
Expand All @@ -15,6 +15,6 @@ Pod::Spec.new do |s|

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

s.dependency 'VitalLogging', '~> 1.3.0'
s.dependency 'VitalLogging', '~> 1.3.1'
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.3.0'
s.version = '1.3.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'
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.3.0'
s.dependency 'VitalCore', '~> 1.3.1'
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.3.0'
s.version = '1.3.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'
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.3.0'
s.dependency 'VitalCore', '~> 1.3.1'

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.3.0'
s.version = '1.3.1'
s.license = 'Apache 2.0'
s.summary = 'Logging support for VitalCore'
s.homepage = 'https://github.com/tryVital/vital-ios'
Expand Down

0 comments on commit 7b948ad

Please sign in to comment.