Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: John Nunley <[email protected]>
  • Loading branch information
notgull committed Aug 30, 2023
1 parent 7f5ba27 commit 5d5edcd
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
if: github.repository_owner == 'notgull'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
branch: main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Changelog

This file describes important user-facing changes in the `async-winit` crate.

## Version 0.2.0

- **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.
- This crate is now dual licensed under LGPL v3 and MPL 2.0, opposite to the previous AGPL v3 licensing.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-winit"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
authors = ["John Nunley <[email protected]>"]
description = "Use winit like an async runtime"
Expand Down
2 changes: 1 addition & 1 deletion smol_example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/notgull/async-winit"

[dependencies]
async-rustls = "0.3.0"
async-winit = { version = "0.1.0", path = ".." }
async-winit = { version = "0.2.0", path = ".." }
bytemuck = "1.13.1"
color-eyre = "0.6.2"
cosmic-text = "0.8.0"
Expand Down

0 comments on commit 5d5edcd

Please sign in to comment.