Skip to content

Commit d27ca56

Browse files
committed
Bump version 1.2.1
1 parent 56fa72f commit d27ca56

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

Changelog.md

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

3+
## 1.2.2
4+
- Make compatible with older Xcode versions (prior 12.1)
5+
- Clean up tests and CI pipeline
6+
- Add AFNetworking and Alamofire to demo project
7+
38
## 1.2.0
49
- Added new flag `collectionEnabled` to set up Instana without data collection. Instrumentation can be enabled later using this property. This allows apps to start Instana with a delay if users are asked for consent beforehand.
510

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

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.2.0")
8+
AssertTrue(InstanaSystemUtils.agentVersion == "1.2.1")
99
}
1010

1111
func test_systemVersion() {

contributing.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@ Please make sure to follow the semantic versioning rules.
2727
2. Update version in VersionConfig.Swift
2828
3. Update InstanaSystemUtilsTests test_AgentVersion.
2929
4. Update CHANGELOG.md accordingly
30-
5. Run `git tag <Your Version> && git push origin <Your Version>`
31-
6. Run `pod trunk push InstanaAgent.podspec --allow-warnings`
32-
7. Make a release note on the Github page
33-
8. Update cross platform frameworks accordingly (Flutter / ReactNative / Xamarin)
30+
5. Run tests via `sh scripts/run-all-test.sh`
31+
6. Run `git tag <Your Version> && git push origin <Your Version>`
32+
7. Run `pod trunk push InstanaAgent.podspec --allow-warnings`
33+
8. Make a release note on the Github page
34+
9. Update cross platform frameworks accordingly (Flutter / ReactNative / Xamarin)
3435

3536
## Code of Conduct
3637

0 commit comments

Comments
 (0)