Skip to content

Commit d6eaeeb

Browse files
author
Jeremy Chiang
authored
Merge pull request #86 from steamclock/jc/85-update-sentry
[85] Use latest Sentry
2 parents cca92db + 41d997c commit d6eaeeb

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## Un-released
8+
9+
## [0.5.2]
10+
- Update Sentry dependency to v7.2.1
11+
12+
## [0.5.1]
813
- Add `userReport` to allow sending dynamic user reports to Sentry. (#71)
914

1015
## [0.4.0]
1116
- Change `fatal` and `error` level log events to accept only `StaticString` messages to prevent duplicate issue creation with Sentry.
12-
- Add optional `info` parameter to log dynamic strings along with `fatal` and `error` logs.
17+
- Add optional `info` parameter to log dynamic strings along with `fatal` and `error` logs.
1318

1419
## [0.3.2]
1520
- Add `Codable` conformance to `LogLevelPreset`.

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let package = Package(
1414
],
1515
dependencies: [
1616
.package(url: "https://github.com/DaveWoodCom/XCGLogger", from: "7.0.0"),
17-
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "5.1.0"),
17+
.package(url: "https://github.com/getsentry/sentry-cocoa", from: "7.0.0"),
1818
],
1919
targets: [
2020
.target(

SteamcLog.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'SteamcLog'
11-
s.version = '0.5.1'
11+
s.version = '0.5.2'
1212
s.summary = 'A short description of SteamcLog.'
1313

1414
# This description is used to generate tags and improve search results.
@@ -29,7 +29,7 @@ TODO: Add long description of the pod here.
2929
s.ios.deployment_target = '11.0'
3030

3131
s.dependency 'XCGLogger', '~> 7.0.1'
32-
s.dependency 'Sentry', '~> 5.1'
32+
s.dependency 'Sentry', '~> 7.0.0'
3333

3434
s.subspec 'Netable' do |ss|
3535
ss.source_files = 'Netable/*', 'SteamcLog/Classes/**/*'

0 commit comments

Comments
 (0)