Skip to content

Commit 93c4e46

Browse files
Hongyan JiangGitHub Enterprise
authored andcommitted
fix pod lib lint error
1 parent 2748eee commit 93c4e46

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 1.8.9
4+
- fix pod lib lint error
5+
36
## 1.8.8
47
- add option to configure rate limit, drop beacons and performance beacons
58
- send drop beacons and performance beacons (app launch time, low memory warning, application not responding)to Instana backend

Dev/InstanaAgentExample/Base.lproj/Main.storyboard

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<constraint firstAttribute="trailing" secondItem="23L-N3-Xne" secondAttribute="trailing" constant="20" symbolic="YES" id="vhI-QS-Sl1"/>
161161
</constraints>
162162
</view>
163-
<tabBarItem key="tabBarItem" title="JSON" image="doc.text.fill" catalog="system" id="gwl-YI-2EM"/>
163+
<tabBarItem key="tabBarItem" title="JSON" image="text.document.fill" catalog="system" id="gwl-YI-2EM"/>
164164
<connections>
165165
<outlet property="searchTextField" destination="wYO-bZ-GLE" id="Mt6-lE-dOB"/>
166166
<outlet property="textView" destination="23L-N3-Xne" id="nia-vN-IUC"/>
@@ -232,7 +232,7 @@
232232
</scenes>
233233
<resources>
234234
<image name="book.circle" catalog="system" width="128" height="123"/>
235-
<image name="doc.text.fill" catalog="system" width="115" height="128"/>
235+
<image name="text.document.fill" catalog="system" width="115" height="128"/>
236236
<image name="music.note" catalog="system" width="96" height="128"/>
237237
<image name="photo" catalog="system" width="128" height="93"/>
238238
<systemColor name="labelColor">

InstanaAgent.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
#
1717

1818
s.name = "InstanaAgent"
19-
s.version = "1.8.8"
19+
s.version = "1.8.9"
2020
s.summary = "Instana iOS agent."
2121

2222
# This description is used to generate tags and improve search results.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
struct VersionConfig {
2-
static let agentVersion = "1.8.8"
2+
static let agentVersion = "1.8.9"
33
}

Sources/InstanaAgent/Monitors/Performance/ApplicationNotRespondingMonitor.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ class ApplicationNotRespondingMonitor {
2323
guard let self = self else { return }
2424
if state == .active {
2525
if self.anrDetector == nil {
26-
anrDetector = Detector(anrMonitor: self)
27-
anrDetector?.start(threshold: threshold, samplingInterval: samplingInterval)
26+
self.anrDetector = Detector(anrMonitor: self)
27+
self.anrDetector?.start(threshold: threshold, samplingInterval: samplingInterval)
2828
}
2929
} else if state == .background {
3030
self.anrDetector?.stop()

Tests/InstanaAgentTests/Configuration/InstanaSystemUtilsTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class InstanaSystemUtilsTests: InstanaTestCase {
55

66
func test_AgentVersion() {
77
// Then
8-
AssertTrue(InstanaSystemUtils.agentVersion == "1.8.8")
8+
AssertTrue(InstanaSystemUtils.agentVersion == "1.8.9")
99
}
1010

1111
func test_systemVersion() {

0 commit comments

Comments
 (0)