Skip to content

Commit 5d5edcd

Browse files
committed
v0.2.0
Signed-off-by: John Nunley <[email protected]>
1 parent 7f5ba27 commit 5d5edcd

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- v[0-9]+.*
10+
11+
jobs:
12+
create-release:
13+
if: github.repository_owner == 'notgull'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- uses: taiki-e/create-gh-release-action@v1
18+
with:
19+
changelog: CHANGELOG.md
20+
branch: main
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Changelog
2+
3+
This file describes important user-facing changes in the `async-winit` crate.
4+
5+
## Version 0.2.0
6+
7+
- **Breaking:** Most types now include a `ThreadSafety` type parameter that controls whether or not it uses thread-safe (`Arc`, `Mutex`) or thread-unsafe (`Rc`, `RefCell`) primitives.
8+
- This crate is now dual licensed under LGPL v3 and MPL 2.0, opposite to the previous AGPL v3 licensing.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-winit"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["John Nunley <[email protected]>"]
66
description = "Use winit like an async runtime"

smol_example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/notgull/async-winit"
88

99
[dependencies]
1010
async-rustls = "0.3.0"
11-
async-winit = { version = "0.1.0", path = ".." }
11+
async-winit = { version = "0.2.0", path = ".." }
1212
bytemuck = "1.13.1"
1313
color-eyre = "0.6.2"
1414
cosmic-text = "0.8.0"

0 commit comments

Comments
 (0)