Skip to content

Commit 206ed6d

Browse files
committed
Prepare 1.16.0 release
1 parent 3cf633a commit 206ed6d

4 files changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/build_and_test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and test
22

33
on:
44
push:
5-
workflow_call:
5+
pull_request:
66

77
concurrency:
88
group: ${{ github.workflow }}-${{ github.ref }}
@@ -13,6 +13,7 @@ jobs:
1313
build:
1414
name: Build and test
1515
runs-on: macos-latest
16+
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
1617
timeout-minutes: 30
1718
steps:
1819
- uses: actions/checkout@v7

.github/workflows/docs.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Deploy Docs
22

33
on:
44
push:
5+
pull_request:
56

67
permissions: {}
78

@@ -12,6 +13,7 @@ jobs:
1213
build:
1314
name: Build
1415
runs-on: macos-latest
16+
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
1517
steps:
1618
- uses: actions/checkout@v7
1719
with:
@@ -51,7 +53,7 @@ jobs:
5153

5254
# Deployment job
5355
deploy:
54-
if: ${{ github.ref == 'refs/heads/main' }}
56+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
5557
environment:
5658
name: github-pages
5759
url: ${{ needs.build.outputs.page_url }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 1.16.0
44

55
* Sync status timestamps (`PriorityStatusEntry.lastSyncedAt`, `SyncSubscriptionDescription.lastSyncedAt`,
66
and `SyncSubscriptionDescription.expiresAt`) now have microsecond resolution.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// The current version of the PowerSync Swift SDK. This should be updated to the latest version in `CHANGELOG.md` when a new version is released.
2-
let libraryVersion = "1.15.1"
2+
let libraryVersion = "1.16.0"

0 commit comments

Comments
 (0)