Skip to content

Commit cb8644e

Browse files
authored
Publish v5.3.0 (#830)
1 parent 2a86fd5 commit cb8644e

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

.github/workflows/publish.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish
2+
3+
on:
4+
pull_request:
5+
branches: [ main ]
6+
push:
7+
tags: [ 'v[0-9]+.[0-9]+.[0-9]+*' ]
8+
9+
jobs:
10+
publish:
11+
uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main
12+
permissions:
13+
id-token: write # Required for authentication using OIDC
14+
pull-requests: write # Required for writing the pull request note
15+
with:
16+
sdk: stable

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 5.3.0-wip
1+
## 5.3.0
22

33
- Migrate away from `.elementAt` in favor of `operator +` (#825)
44
- Bump minimum required Dart version to `3.3.0` (#825)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ suite in the `test\` subdirectory that shows other API calls.
7373

7474
A good starting point is `hello.dart`. This example demonstrates creating a
7575
Win32 window and responding to common messages such as `WM_PAINT` through a
76-
`WindowProc` callback function.
76+
`WNDPROC` callback function.
7777

7878
To run it, type:
7979

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: win32
22
description: >
33
A Dart library for accessing common Win32 APIs using FFI. No C required!
4-
version: 5.3.0-wip
4+
version: 5.3.0
55
homepage: https://win32.pub
66
repository: https://github.com/dart-windows/win32
77
issue_tracker: https://github.com/dart-windows/win32/issues

0 commit comments

Comments
 (0)