Skip to content

Commit

Permalink
Release 1.4.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio committed Feb 3, 2025
1 parent 450ed4a commit 4750bd9
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.4.0-beta.2"),
.package(url: "https://github.com/tryvital/vital-ios", from: "1.4.0-beta.3"),
```

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.4.0-beta.2"
pod "VitalDevices", "~> 1.4.0-beta.2"
pod "VitalHealthKit", "~> 1.4.0-beta.2"
pod "VitalCore", "~> 1.4.0-beta.3"
pod "VitalDevices", "~> 1.4.0-beta.3"
pod "VitalHealthKit", "~> 1.4.0-beta.3"
```

## 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 @@ -134,7 +134,7 @@ public enum AuthenticateRequest {
}

@objc public class VitalClient: NSObject {
public static let sdkVersion = "1.4.0-beta.2"
public static let sdkVersion = "1.4.0-beta.3"

@_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.4.0-beta.2'
s.version = '1.4.0-beta.3'
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.4.0-beta.2'
s.dependency 'VitalLogging', '~> 1.4.0-beta.3'
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.4.0-beta.2'
s.version = '1.4.0-beta.3'
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.4.0-beta.2'
s.dependency 'VitalCore', '~> 1.4.0-beta.3'
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.4.0-beta.2'
s.version = '1.4.0-beta.3'
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.4.0-beta.2'
s.dependency 'VitalCore', '~> 1.4.0-beta.3'

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.4.0-beta.2'
s.version = '1.4.0-beta.3'
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 4750bd9

Please sign in to comment.