From f83351a4b5d5f913ccb8d2216b7e13073c5d9b60 Mon Sep 17 00:00:00 2001 From: td Date: Tue, 30 Apr 2024 17:53:28 +0530 Subject: [PATCH 1/2] chore: release v0.28.1 --- CHANGELOG.md | 10 ++++++++++ pubspec.yaml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a89633c1..92f12ecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.28.1] 30th April 2024 +- chore: expose fake matrix api (td) +- chore: update voip readme (td) +- fix: allow mesh group call invite (td) +- fix: checkout repo for gh_release job (td) +- fix: conduit container (td) +- fix: Don't fail sync if a presence event has an empty presence field (morguldir) +- fix: Fetch invite state after restart app (krille-chan) +- refactor: Remove unused variable (Krille) + ## [0.28.0] 23rd April 2024 This release introduces the new famedly calls, it brings 1:1, mesh and livekit calls support to the matrix dart sdk, read more at: [voip docs](lib/src/voip/README.md) diff --git a/pubspec.yaml b/pubspec.yaml index f7a57f88..aef25497 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: matrix description: Matrix Dart SDK -version: 0.28.0 +version: 0.28.1 homepage: https://famedly.com repository: https://github.com/famedly/matrix-dart-sdk.git issue_tracker: https://github.com/famedly/matrix-dart-sdk/issues From 6dbbfb3f70fc8dc93632438925a29db11cb48648 Mon Sep 17 00:00:00 2001 From: td Date: Tue, 30 Apr 2024 17:59:10 +0530 Subject: [PATCH 2/2] chore: more gh_release fixes --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a9dcb020..1e8386e5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,7 +27,7 @@ jobs: version=$(echo ${{ github.ref_name }} | sed 's/^v//') releaseRegex="^v[0-9]+\.[0-9]+\.[0-9]+$" releaseCandidateRegex="^v[0-9]+\.[0-9]+\.[0-9]+rc[0-9]+$" - notes="$(./scripts/extract_changelog.sh $version)" + notes=$(./scripts/extract_changelog.sh $version) if [ -z $notes ]; then if [[ ${{ github.ref_name }} =~ $releaseRegex ]]; then gh release create ${{ github.ref_name }} --notes $notes -t ${{ github.ref_name }} --verify-tag