diff --git a/CHANGELOG.md b/CHANGELOG.md index 82a3bba..8631063 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.21.6 + +- Update the development toolchain to Flutter 3.47 +- Update Android Gradle Plugin to 8.13.0 +- Update the Android Nubrick dependency to 0.16.9 + ## 0.21.5 - Update dependencies and fix compile issue diff --git a/Makefile b/Makefile index 9080f0f..e335e5b 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ reinstall: .PHONY: reinstall-ios reinstall-ios: - cd example && flutter clean && rm -rf ./ios/Pods ./ios/Podfile.lock 2> /dev/null && pod repo update && flutter build ios --simulator - cd e2e && flutter clean && rm -rf ./ios/Pods ./ios/Podfile.lock 2> /dev/null && pod repo update && flutter build ios --simulator + cd example && flutter clean && flutter build ios --simulator + cd e2e && flutter clean && flutter build ios --simulator .PHONY: reinstall-android reinstall-android: diff --git a/android/build.gradle b/android/build.gradle index c7a7258..b8853ad 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -56,7 +56,7 @@ android { } dependencies { - implementation 'app.nubrick:nubrick:0.16.8' + implementation 'app.nubrick:nubrick:0.16.9' implementation 'androidx.activity:activity-compose:1.8.2' testImplementation 'org.jetbrains.kotlin:kotlin-test' testImplementation 'org.mockito:mockito-core:5.0.0' diff --git a/e2e/pubspec.lock b/e2e/pubspec.lock index 334f4b5..65c2a05 100644 --- a/e2e/pubspec.lock +++ b/e2e/pubspec.lock @@ -137,7 +137,7 @@ packages: path: ".." relative: true source: path - version: "0.21.5" + version: "0.21.6" path: dependency: transitive description: diff --git a/example/pubspec.lock b/example/pubspec.lock index cfb2488..f8999bf 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -160,7 +160,7 @@ packages: path: ".." relative: true source: path - version: "0.21.5" + version: "0.21.6" path: dependency: transitive description: diff --git a/lib/version.dart b/lib/version.dart index 6f555ff..42406d0 100644 --- a/lib/version.dart +++ b/lib/version.dart @@ -1,2 +1,2 @@ /// The version of the Nubrick Flutter SDK. -const String nubrickFlutterSdkVersion = '0.21.5'; +const String nubrickFlutterSdkVersion = '0.21.6'; diff --git a/pubspec.yaml b/pubspec.yaml index 8641075..0d8b579 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: nubrick_flutter description: "Nubrick bridge sdk for flutter" -version: 0.21.5 +version: 0.21.6 homepage: "https://nubrick.app" repository: "https://github.com/plaidev/nubrick-flutter"