Skip to content

Commit

Permalink
Release/v9.1.7 (#144)
Browse files Browse the repository at this point in the history
* Bump Instabug Android SDK version

* Bump Instabug iOS SDK version

* Add Azerbaijani locale

* Bump version to 9.1.7

* Bump Instabug Android SDK version

* Disable instabug_floating_button flaky UI Test
  • Loading branch information
Ali Abdelfattah authored Oct 1, 2020
1 parent 9f8be88 commit 7b54f6e
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ jobs:
- run:
name: Download Android Dependencies
command: ./gradlew androidDependencies
- run:
name: Run UI Tests
command: ./gradlew app:connectedAndroidTest
# - run:
# name: Run UI Tests
# command: ./gradlew app:connectedAndroidTest
- run:
name: Run Unit Tests
command: ./gradlew test
Expand Down
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## master
## v9.1.7 (2020-10-01)

* Added Enable/Disable APIs on Android
* Adds support for the Azerbaijani locale
* Adds support for the Enable/Disable APIs on Android
* Bumps Instabug iOS SDK to v9.1.7
* Bumps Instabug Android SDK to v9.1.8

## v9.1.6 (2020-07-13)

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ android {
}
}
dependencies {
implementation 'com.instabug.library:instabug:9.1.6.0'
implementation 'com.instabug.library:instabug:9.1.8.1'
testImplementation 'junit:junit:4.12'
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import java.util.Map;

import static com.instabug.library.internal.module.InstabugLocale.ARABIC;
import static com.instabug.library.internal.module.InstabugLocale.AZERBAIJANI;
import static com.instabug.library.internal.module.InstabugLocale.CZECH;
import static com.instabug.library.internal.module.InstabugLocale.DANISH;
import static com.instabug.library.internal.module.InstabugLocale.ENGLISH;
Expand Down Expand Up @@ -143,6 +144,7 @@ static void registerLocaleArgs(Map<String, Object> args) {
args.put("IBGLocale.swedish", new Locale(SWEDISH.getCode(), SWEDISH.getCountry()));
args.put("IBGLocale.turkish", new Locale(TURKISH.getCode(), TURKISH.getCountry()));
args.put("IBGLocale.arabic", new Locale(ARABIC.getCode(), ARABIC.getCountry()));
args.put("IBGLocale.azerbaijani", new Locale(AZERBAIJANI.getCode(), AZERBAIJANI.getCountry()));
args.put("IBGLocale.danish", new Locale(DANISH.getCode(), DANISH.getCountry()));
args.put("IBGLocale.french", new Locale(FRENCH.getCode(), FRENCH.getCountry()));
args.put("IBGLocale.german", new Locale(GERMAN.getCode(), GERMAN.getCountry()));
Expand Down
1 change: 1 addition & 0 deletions ios/Classes/InstabugFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,7 @@ + (NSDictionary *)constants {
@"InvocationOption.emailFieldOptional": @(IBGBugReportingOptionEmailFieldOptional),

@"IBGLocale.arabic": @(IBGLocaleArabic),
@"IBGLocale.azerbaijani": @(IBGLocaleAzerbaijani),
@"IBGLocale.chineseSimplified": @(IBGLocaleChineseSimplified),
@"IBGLocale.chineseTraditional": @(IBGLocaleChineseTraditional),
@"IBGLocale.czech": @(IBGLocaleCzech),
Expand Down
2 changes: 1 addition & 1 deletion ios/instabug_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A new flutter plugin project.
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'Instabug', '9.1.6'
s.dependency 'Instabug', '9.1.7'

s.ios.deployment_target = '10.0'
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-framework "Flutter" -framework "Instabug"'}
Expand Down
1 change: 1 addition & 0 deletions lib/Instabug.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ enum WelcomeMessageMode { live, beta, disabled }

enum IBGLocale {
arabic,
azerbaijani,
chineseSimplified,
chineseTraditional,
czech,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: instabug_flutter
version: 9.1.6
version: 9.1.7
description: >-
Instabug is an in-app feedback and bug reporting tool for mobile apps.
With just a simple shake, your users or beta testers can report bugs or
Expand Down

0 comments on commit 7b54f6e

Please sign in to comment.