diff --git a/CHANGELOG.md b/CHANGELOG.md index 675b31931..cc0dceb9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,38 @@ [@Abestanis]: https://github.com/Abestanis [@ernince]: https://github.com/ernince +## 1.0.12 + +* Update targetSdkVersion to 34 to match new [Google Play store API level requirements](https://support.google.com/googleplay/android-developer/answer/11926878?hl=en) @nt4f04und + +## 1.0.11 + +* Fix Fastlane CD by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/118 +* Upload symbols to Crashlytics on CD step by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/125 +* Fix firstYear crash by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/124 + + +**Full Changelog**: https://github.com/nt4f04uNd/sweyer/compare/1.0.10...1.0.11 + ## 1.0.10 -- [Added Turkish language support](https://github.com/nt4f04uNd/sweyer/pull/86) **([@ernince])** +First release generated by Fastlane CD! + +* Added Turkish translation by @eren-ince in https://github.com/nt4f04uNd/sweyer/pull/86 +* Add privacy policy link to README by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/93 +* Move the native Android code of Sweyer into a plugin by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/85 +* Update Flutter and dependencies by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/89 +* Fix settings button visible on insertion settings page by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/90 +* Support Material You monochrome app icon by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/115 +* Decide whether to show scroll labels based on drag position by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/91 +* Improve startup robustness by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/95 +* Convert Java to Kotlin by @Abestanis in https://github.com/nt4f04uNd/sweyer/pull/94 +* Fastlane CD (init) by @nt4f04uNd in https://github.com/nt4f04uNd/sweyer/pull/117 + +### New Contributors +* @eren-ince made their first contribution in https://github.com/nt4f04uNd/sweyer/pull/86 + +**Full Changelog**: https://github.com/nt4f04uNd/sweyer/compare/1.0.9...1.0.10 ## 1.0.9 diff --git a/android/app/build.gradle b/android/app/build.gradle index 434592905..927161e28 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -34,7 +34,7 @@ if (keystorePropertiesFile.exists()) { } android { - compileSdkVersion 33 // flutter.compileSdkVersion + compileSdkVersion 34 // flutter.compileSdkVersion compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -52,7 +52,7 @@ android { defaultConfig { applicationId "com.nt4f04und.sweyer" minSdkVersion Math.max(21, flutter.minSdkVersion) - targetSdkVersion 33 // flutter.targetSdkVersion + targetSdkVersion 34 // flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName } diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index b2634abfa..91005bbcd 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -7,6 +7,7 @@ + diff --git a/pubspec.lock b/pubspec.lock index c935a41d4..5dde4a542 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -70,7 +70,7 @@ packages: description: path: audio_service ref: sweyer - resolved-ref: "8b8b6e66a2e24bbab610bd02ce02ecaca0ddbdc4" + resolved-ref: "1e92412fcd76c43fc88c9b1157b855d097b7c9b3" url: "https://github.com/nt4f04uNd/audio_service" source: git version: "0.16.2" @@ -79,7 +79,7 @@ packages: description: path: audio_service_platform_interface ref: sweyer - resolved-ref: "8b8b6e66a2e24bbab610bd02ce02ecaca0ddbdc4" + resolved-ref: "1e92412fcd76c43fc88c9b1157b855d097b7c9b3" url: "https://github.com/nt4f04und/audio_service.git" source: git version: "1.0.0" @@ -88,7 +88,7 @@ packages: description: path: audio_service_web ref: sweyer - resolved-ref: "8b8b6e66a2e24bbab610bd02ce02ecaca0ddbdc4" + resolved-ref: "1e92412fcd76c43fc88c9b1157b855d097b7c9b3" url: "https://github.com/nt4f04und/audio_service.git" source: git version: "0.16.2" diff --git a/pubspec.yaml b/pubspec.yaml index ab9b64e73..0a0be7142 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ homepage: https://github.com/nt4f04uNd/sweyer repository: https://github.com/nt4f04uNd/sweyer issue_tracker: https://github.com/nt4f04uNd/sweyer/issues publish_to: none -version: 1.0.11+14 +version: 1.0.12+15 environment: sdk: '>=2.17.0 <3.0.0' diff --git a/sweyer_plugin/android/build.gradle b/sweyer_plugin/android/build.gradle index 960719302..7d0b01e06 100644 --- a/sweyer_plugin/android/build.gradle +++ b/sweyer_plugin/android/build.gradle @@ -25,7 +25,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { - compileSdkVersion 31 + compileSdkVersion 34 compileOptions { sourceCompatibility JavaVersion.VERSION_1_8