Skip to content

Commit c6f8a1d

Browse files
Release:v13.1.1 (#479)
* release/v13.1.1 * release v13.1.1
1 parent 3e9797c commit c6f8a1d

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/Instabug/Instabug-Flutter/compare/v13.0.0...dev)
3+
## [13.1.1](https://github.com/Instabug/Instabug-Flutter/compare/v13.0.0...dev) (Jun,11 2024)
44

55
### Added
66
- Add support for passing a grouping fingerprint, error level, and user attributes to the `CrashReporting.reportHandledCrash` non-fatals API ([#461](https://github.com/Instabug/Instabug-Flutter/pull/461)).

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'com.instabug.flutter'
2-
version '13.0.0'
2+
version '13.1.1'
33

44
buildscript {
55
repositories {

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PODS:
22
- Flutter (1.0.0)
33
- Instabug (13.1.0)
4-
- instabug_flutter (13.0.0):
4+
- instabug_flutter (13.1.1):
55
- Flutter
66
- Instabug (= 13.1.0)
77
- OCMock (3.6)
@@ -25,9 +25,9 @@ EXTERNAL SOURCES:
2525
SPEC CHECKSUMS:
2626
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
2727
Instabug: 3d55eff7ea55adf22df404908a2b954b8b585c29
28-
instabug_flutter: 8b86ee14635a4b0ebfb4f760a108c7b0606c47e4
28+
instabug_flutter: b9e34b14992d267f676f925de884da7eeae5e0ce
2929
OCMock: 5ea90566be239f179ba766fd9fbae5885040b992
3030

31-
PODFILE CHECKSUM: 85507f53c31d3e834227ea88986033537c7c78b9
31+
PODFILE CHECKSUM: a8bb1cf031fc5abb4046443c6fa65330087bf638
3232

3333
COCOAPODS: 1.13.0

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ packages:
107107
path: ".."
108108
relative: true
109109
source: path
110-
version: "12.7.0"
110+
version: "13.1.1"
111111
leak_tracker:
112112
dependency: transitive
113113
description:

ios/Classes/Modules/CrashReportingApi.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ - (void)sendJsonCrash:(NSString *)jsonCrash isHandled:(NSNumber *)isHandled erro
2222
options:NSJSONReadingMutableContainers
2323
error:&jsonError];
2424
BOOL isNonFatal = [isHandled boolValue];
25-
25+
2626
if (isNonFatal) {
2727
[IBGCrashReporting cp_reportNonFatalCrashWithStackTrace:stackTrace
2828
level:IBGNonFatalLevelError groupingString:nil userAttributes:nil
2929
];
3030
} else {
3131
[IBGCrashReporting cp_reportFatalCrashWithStackTrace:stackTrace ];
32-
32+
3333
}
3434
}
3535

@@ -44,6 +44,6 @@ - (void)sendNonFatalErrorJsonCrash:(nonnull NSString *)jsonCrash userAttributes:
4444
level: level
4545
groupingString:fingerprint
4646
userAttributes:userAttributes];
47-
47+
4848
}
4949
@end

ios/instabug_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'instabug_flutter'
3-
s.version = '13.0.0'
3+
s.version = '13.1.1'
44
s.summary = 'Flutter plugin for integrating the Instabug SDK.'
55
s.author = 'Instabug'
66
s.homepage = 'https://www.instabug.com/platforms/flutter'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: instabug_flutter
2-
version: 13.0.0
2+
version: 13.1.1
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)