diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4479f8d54..e8b4af2bb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -146,27 +146,3 @@ jobs: bundle exec fastlane deploy_release fi cd .. - - promote_snapcraft: - runs-on: ubuntu-latest - env: - SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }} - steps: - - name: Check out Git repository - uses: actions/checkout@v3 - - name: Install Snapcraft - uses: samuelmeuli/action-snapcraft@v2 - - name: Install expect - run: sudo apt-get update && sudo apt-get install -y expect - - name: Promote Snap - run: | - if [[ $GITHUB_REF_NAME == rc* ]]; then - expect -c " - spawn snapcraft promote fluffychat --from-channel edge --to-channel candidate - expect \"Do you want to promote the current set to the 'candidate' channel? [y/N]:\" - send \"y\r\" - expect eof - " - else - snapcraft promote fluffychat --from-channel candidate --to-channel stable --yes - fi diff --git a/CHANGELOG.md b/CHANGELOG.md index a03994f84..8d77a5e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## v1.14.1 +- fix: Routing bug when adding second account via password login + ## v1.14.0 Release with a lot of bugfixes and refactorings under the hood. FluffyChat now uses go_router instead of vrouter, works with the newest Flutter SDK and supports "reason" field for redactions. For Android there is a new "background-fetch mode" for Push Notifications which should make notifications in background faster and more reliable and reduce battery-usage. diff --git a/pubspec.yaml b/pubspec.yaml index cd22e9677..4b0a71e00 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,8 @@ name: fluffychat description: Chat with your friends. publish_to: none -version: 1.14.0+3515 +# On version bump also increase the build number for F-Droid +version: 1.14.1+3516 environment: sdk: ">=3.0.0 <4.0.0"