diff --git a/.github/workflows/flutter_release_ios.yml b/.github/workflows/flutter_release_ios.yml index cee7ffb..0f52c5b 100644 --- a/.github/workflows/flutter_release_ios.yml +++ b/.github/workflows/flutter_release_ios.yml @@ -10,6 +10,7 @@ jobs: # NB: ${{ syntax }} is required despite GitHub docs to the contrary. Appears that ! operator can't be used otherwise. runs-on: macos-13 + permissions: write-all steps: - name: Checkout @@ -64,12 +65,18 @@ jobs: run: | cd ios bundle exec fastlane beta_stage + + - name: Store symbols on GitHub Release + run: | + pwd + gh release upload $GITHUB_REF ios/Runner.app.dSYM.zip#fairySymbols DeployIosProdTestflight: name: Build and release prod testflight if: ${{ !contains ( github.event.release.tag_name, '_' ) || endsWith( github.event.release.tag_name, '_ios' ) }} runs-on: macos-13 + permissions: write-all steps: - name: Checkout @@ -125,4 +132,9 @@ jobs: APP_STORE_CONNECT_API_KEY_KEY_ID: '${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}' run: | cd ios - bundle exec fastlane prod_stage_testflight \ No newline at end of file + bundle exec fastlane prod_stage_testflight + + - name: Store symbols on GitHub Release + run: | + pwd + gh release upload $GITHUB_REF ios/Runner.app.dSYM.zip#productionSymbols \ No newline at end of file diff --git a/android/fastlane/metadata/android/en-GB/changelogs/46.txt b/android/fastlane/metadata/android/en-GB/changelogs/46.txt new file mode 100644 index 0000000..2ebb1e0 --- /dev/null +++ b/android/fastlane/metadata/android/en-GB/changelogs/46.txt @@ -0,0 +1,7 @@ +* Enabled new account registration via in-app purchases on Google Play and Apple App Store +* Text in main password fields can be made visible +* Allow file imports to be cancelled at password entry step +* Allow old free (local-only) vaults to be exported again or deleted ahead of the usual automatic deletion date +* Clarify purpose of "Sign in" button in menu for free users +* Enforce the existing requirement for email address validation +* Improved performance and reliability; dependency updates diff --git a/pubspec.yaml b/pubspec.yaml index 0e6aa4a..323c1f3 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.1.0+45 +version: 1.1.1+46 environment: sdk: '>=2.18.0 <3.0.0'