Skip to content

Commit 5b4c4a7

Browse files
Update version to 0.14.0 (#106)
Co-authored-by: bitdrift-opening-capture-sdk-prs[bot] <bitdrift-opening-capture-sdk-prs[bot]@users.noreply.github.com>
1 parent b5aeadc commit 5b4c4a7

File tree

6 files changed

+18
-7
lines changed

6 files changed

+18
-7
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.13.0
1+
0.14.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.13.0'
4+
s.version = '0.14.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.13.0/Capture.zip" }
31+
s.source = { http: "https://dl.bitdrift.io/sdk/ios/capture-0.14.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.13.0'
3+
s.version = '0.14.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.13.0'
4+
s.version = '0.14.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.13.0/Capture.zip",
32-
checksum: "47d0c8bbf82dba26ab1bac6da6f86c69c1c27a9c8fbc0e615e032cf0451f491e"
31+
url: "https://dl.bitdrift.io/sdk/ios/capture-0.14.0/Capture.zip",
32+
checksum: "9634c6bd8a6f1db9edc93770b7840d8a464c1e1a6e02bb7e6cf5578d3d3debc8"
3333
),
3434
.target(
3535
name: "CaptureCocoaLumberjack",

Sources/CaptureMocks/MockLogging.swift

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,15 @@ public final class MockLogging: Logging {
4747
public func removeField(withKey _: String) {}
4848

4949
public func createTemporaryDeviceCode(completion _: @escaping (Result<String, Error>) -> Void) {}
50+
51+
public func startSpan(
52+
name _: String,
53+
level _: LogLevel,
54+
file _: String?,
55+
line _: Int?,
56+
function _: String?,
57+
fields _: Fields?
58+
) -> Span {
59+
fatalError("TODO: needs to be implemented")
60+
}
5061
}

0 commit comments

Comments
 (0)