Skip to content

Commit b59d214

Browse files
Update version to 0.15.0 (#112)
Co-authored-by: bitdrift-opening-capture-sdk-prs[bot] <bitdrift-opening-capture-sdk-prs[bot]@users.noreply.github.com>
1 parent f00ca8a commit b59d214

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.14.5
1+
0.15.0

BitdriftCapture.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'BitdriftCapture'
33
s.summary = "A dynamic observability SDK for mobile developers."
4-
s.version = '0.14.5'
4+
s.version = '0.15.0'
55

66
s.homepage = 'https://bitdrift.io'
77
s.license = {
@@ -28,7 +28,7 @@ Pod::Spec.new do |s|
2828
'CoreTelephony'
2929
]
3030

31-
s.source = { http: "https://dl.bitdrift.io/sdk/ios/capture-0.14.5/Capture.zip" }
31+
s.source = { http: "https://dl.bitdrift.io/sdk/ios/capture-0.15.0/Capture.zip" }
3232
s.preserve_paths = ['NOTICE.txt']
3333
s.vendored_frameworks = 'Capture.xcframework'
3434
end

CaptureCocoaLumberjack.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CaptureCocoaLumberjack'
3-
s.version = '0.14.5'
3+
s.version = '0.15.0'
44
s.summary = "Official Capture integration for CocoaLumberjack."
55

66
s.homepage = 'https://bitdrift.io'

CaptureSwiftyBeaver.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |s|
33
s.name = 'CaptureSwiftyBeaver'
4-
s.version = '0.14.5'
4+
s.version = '0.15.0'
55
s.summary = "Official Capture integration for SwiftyBeaver."
66

77
s.homepage = 'https://bitdrift.io'

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ let package = Package(
2828
targets: [
2929
.binaryTarget(
3030
name: "Capture",
31-
url: "https://dl.bitdrift.io/sdk/ios/capture-0.14.5/Capture.zip",
32-
checksum: "63be739fca73b212b373c6c8b21516d933261b7cf347d93a19bf967d3683f811"
31+
url: "https://dl.bitdrift.io/sdk/ios/capture-0.15.0/Capture.zip",
32+
checksum: "d19db90c91451130b4c06ec438c7ce367214b310f35069d0f839c9992c5f6b2d"
3333
),
3434
.target(
3535
name: "CaptureCocoaLumberjack",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The following code demonstrates an example setup of Capture SDK in your app:
1111
```swift
1212
import Capture
1313

14-
Logger.configure(
14+
Logger.start(
1515
withAPIKey: "<your-api-key>",
1616
sessionStrategy: .activityBased()
1717
)

Samples/iOS-Benchmark/iOS-Benchmark/BenchmarkRunner.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ final class ConfigurationBenchmark: AnyBenchmark {
4545
func setUp() {}
4646

4747
func run(_: inout Benchmark.BenchmarkState) throws {
48-
Logger.configure(
48+
Logger.start(
4949
withAPIKey: self.apiKey,
5050
sessionStrategy: .fixed()
5151
)

Tests/Capture/IntegrationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import XCTest
33

44
final class IntegrationTests: XCTestCase {
55
func testCapture() {
6-
Capture.Logger.configure(withAPIKey: "foo", sessionStrategy: .fixed())
6+
Capture.Logger.start(withAPIKey: "foo", sessionStrategy: .fixed())
77
XCTAssertNotNil(Capture.Logger.sessionID)
88
}
99
}

0 commit comments

Comments
 (0)