build: Bump version
This commit is contained in:
parent
19cdde2665
commit
accf15c6e8
3 changed files with 5 additions and 25 deletions
24
.github/workflows/release.yaml
vendored
24
.github/workflows/release.yaml
vendored
|
|
@ -146,27 +146,3 @@ jobs:
|
||||||
bundle exec fastlane deploy_release
|
bundle exec fastlane deploy_release
|
||||||
fi
|
fi
|
||||||
cd ..
|
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
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
## v1.14.1
|
||||||
|
- fix: Routing bug when adding second account via password login
|
||||||
|
|
||||||
## v1.14.0
|
## 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.
|
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.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
name: fluffychat
|
name: fluffychat
|
||||||
description: Chat with your friends.
|
description: Chat with your friends.
|
||||||
publish_to: none
|
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:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ">=3.0.0 <4.0.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue