build: Bump version

This commit is contained in:
krille-chan 2023-09-17 09:59:41 +02:00
parent 19cdde2665
commit accf15c6e8
No known key found for this signature in database
3 changed files with 5 additions and 25 deletions

View file

@ -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

View file

@ -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.

View file

@ -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"