Skip to content

Commit 10bc3ee

Browse files
committed
feat: ready for 1.1.0+16 released.
1 parent 5c0980a commit 10bc3ee

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ jobs:
3333
- name: Update GITHUB_RUN_NUMBER to version
3434
run: ./update_version.sh
3535

36+
- name: Git commit pubspec.yaml to prevent validation error
37+
run: |
38+
git config --global user.name "GitHub Actions"
39+
git config --global user.email "github@users.noreply.github.com"
40+
git commit -am "chore: updated pubspec.yaml"
41+
3642
- name: Prepare pub credentials
3743
run: mkdir -p $XDG_CONFIG_HOME/dart && echo '${{ secrets.CREDENTIAL_JSON }}' > "$XDG_CONFIG_HOME/dart/pub-credentials.json"
3844

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ Changes to the project are tracked using build numbers behind the version number
1111

1212
## [Unreleased]
1313

14+
## [1.1.0+16] - 2024-12-23
15+
16+
- Feat: Add `fetchWasm` function to fetch and decompress surrealdb.wasm.gz file.
17+
- Feat: Upgraded surrealdb.wasm to 1.1.0.
18+
1419
## [1.0.1+15] - 2024-10-07
1520

1621
- Feat: Upgraded surrealdb.wasm to 1.0.1.

RELEASE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
- Feat: Upgraded surrealdb.wasm to 1.0.1.
1+
- Feat: Add `fetchWasm` function to fetch and decompress surrealdb.wasm.gz file.
2+
- Feat: Upgraded surrealdb.wasm to 1.1.0.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: surrealdb_wasm
22
description: Flutter SurrealDB WebAssembly(WASM) package
3-
version: 1.0.1
3+
version: 1.1.0
44
repository: https://github.com/limcheekin/surrealdb_wasm
55

66
environment:

0 commit comments

Comments
 (0)