Skip to content

Commit 10f625d

Browse files
committed
Bump version 1.1.4
1 parent b4f5f4d commit 10f625d

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# Changelog
2+
3+
## 1.1.4 Beta
4+
- Add Rate limiter to avoid an extensive usage of Instana
5+
- Improve concurrency and threading
6+
- Update tests
7+
28
## 1.1.3 Beta
39
- Validates the length of properties, meta data and view name gracefully without throwing fatalError. Any value that exceeds the limit will be truncated
410

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.1.3"
19+
s.version = "1.1.4"
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.1.3"
2+
static let agentVersion = "1.1.4"
33
}

Tests/InstanaAgentTests/Configuration/InstanaSystemUtilsTests.swift

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

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

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please note we have a code of conduct, please follow it in all your interactions
1919
## Release version
2020
Please make sure to follow the semantic versioning rules.
2121
1. Update version in `InstanaAgent.podspec` (`s.version = "<Your Version>"`)
22-
2. Update version in VersionConfig.Swift
22+
2. Update version in VersionConfig.Swift and update InstanaSystemUtilsTests
2323
3. Update CHANGELOG.md accordingly
2424
4. Run `git tag <Your Version> && git push origin <Your Version>`
2525
5. Run `pod trunk push InstanaAgent.podspec --allow-warnings`

0 commit comments

Comments
 (0)