Skip to content

Commit

Permalink
Bump version 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tapwork committed Oct 22, 2020
1 parent b4f5f4d commit 10f625d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog

## 1.1.4 Beta
- Add Rate limiter to avoid an extensive usage of Instana
- Improve concurrency and threading
- Update tests

## 1.1.3 Beta
- Validates the length of properties, meta data and view name gracefully without throwing fatalError. Any value that exceeds the limit will be truncated

Expand Down
2 changes: 1 addition & 1 deletion InstanaAgent.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "InstanaAgent"
s.version = "1.1.3"
s.version = "1.1.4"
s.summary = "Instana iOS agent."

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion Sources/InstanaAgent/Configuration/VersionConfig.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
struct VersionConfig {
static let agentVersion = "1.1.3"
static let agentVersion = "1.1.4"
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ class InstanaSystemUtilsTests: InstanaTestCase {

func test_AgentVersion() {
// Then
AssertTrue(InstanaSystemUtils.agentVersion == "1.1.3")
AssertTrue(InstanaSystemUtils.agentVersion == "1.1.4")
}
}
2 changes: 1 addition & 1 deletion contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Please note we have a code of conduct, please follow it in all your interactions
## Release version
Please make sure to follow the semantic versioning rules.
1. Update version in `InstanaAgent.podspec` (`s.version = "<Your Version>"`)
2. Update version in VersionConfig.Swift
2. Update version in VersionConfig.Swift and update InstanaSystemUtilsTests
3. Update CHANGELOG.md accordingly
4. Run `git tag <Your Version> && git push origin <Your Version>`
5. Run `pod trunk push InstanaAgent.podspec --allow-warnings`
Expand Down

0 comments on commit 10f625d

Please sign in to comment.