Skip to content

Commit 03309e4

Browse files
Release: v14.1.0 (#542)
* fix: add support for newer gradle versions (#512) * feat: attach w3c header (#481) * feat: add android feature flag * fix: test cases * fix: test cases * fix: test cases * fix: test cases * fix: add more test cases * fix: add more test cases * fix: add more test cases * fix: add more test cases * Release: v14.0.0 (#532) * chore(android): bump sdk to v14.0.0 * chore(ios): bump sdk to v14.0.0 * Release: v14.0.0 * Release: v14.0.0 * Release: v14.0.0 * chore: change release date (#535) * Release: 14.1.0 (#539) * release: 14.1.0 * release: 14.1.0 * release: v14.1.0 * release: v14.1.0 --------- Co-authored-by: kholood <keassa@instabug.com>
1 parent 08b600e commit 03309e4

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [14.1.0](https://github.com/Instabug/Instabug-Flutter/compare/v14.0.0...v14.1.0) (January 2, 2025)
4+
5+
### Changed
6+
7+
- Bump Instabug Android SDK to v14.1.0 ([#539](https://github.com/Instabug/Instabug-Flutter/pull/539)). [See release notes](https://github.com/Instabug/Instabug-Android/releases/tag/v14.1.0).
8+
- Bump Instabug iOS SDK to v14.1.0 ([#539](https://github.com/Instabug/Instabug-Flutter/pull/539)). [See release notes](https://github.com/Instabug/Instabug-iOS/releases/tag/14.1.0),
9+
310
## [14.0.0](https://github.com/Instabug/Instabug-Flutter/compare/v13.4.0...v14.0.0) (November 18, 2024)
411

512
### Added

android/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.instabug.flutter'
2-
version '14.0.0'
2+
version '14.1.0'
33

44
buildscript {
55
repositories {
@@ -44,7 +44,7 @@ android {
4444
}
4545

4646
dependencies {
47-
api 'com.instabug.library:instabug:14.0.0'
47+
api 'com.instabug.library:instabug:14.1.0'
4848
testImplementation 'junit:junit:4.13.2'
4949
testImplementation "org.mockito:mockito-inline:3.12.1"
5050
testImplementation "io.mockk:mockk:1.13.13"

example/ios/Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- Instabug (14.0.0)
4-
- instabug_flutter (13.4.0):
3+
- Instabug (14.1.0)
4+
- instabug_flutter (14.0.0):
55
- Flutter
6-
- Instabug (= 14.0.0)
6+
- Instabug (= 14.1.0)
77
- OCMock (3.6)
88

99
DEPENDENCIES:
@@ -24,8 +24,8 @@ EXTERNAL SOURCES:
2424

2525
SPEC CHECKSUMS:
2626
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
27-
Instabug: a0beffc01658773e2fac549845782f8937707dc4
28-
instabug_flutter: 71ec9d13d57a4958cabab59fe06792cade3bf754
27+
Instabug: 8cbca8974168c815658133e2813f5ac3a36f8e20
28+
instabug_flutter: a24751dfaedd29475da2af062d3e19d697438f72
2929
OCMock: 5ea90566be239f179ba766fd9fbae5885040b992
3030

3131
PODFILE CHECKSUM: 8f7552fd115ace1988c3db54a69e4a123c448f84

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ packages:
107107
path: ".."
108108
relative: true
109109
source: path
110-
version: "14.0.0"
110+
version: "14.1.0"
111111
instabug_http_client:
112112
dependency: "direct main"
113113
description:

ios/instabug_flutter.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ Pod::Spec.new do |s|
1717
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-framework "Flutter" -framework "Instabug"'}
1818

1919
s.dependency 'Flutter'
20-
s.dependency 'Instabug', '14.0.0'
20+
s.dependency 'Instabug', '14.1.0'
2121
end
2222

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: instabug_flutter
2-
version: 14.0.0
2+
version: 14.1.0
33
description: >-
44
Instabug empowers mobile teams to monitor, prioritize, and debug
55
performance and stability issues throughout the app development lifecycle.

0 commit comments

Comments
 (0)