Merge pull request #34 from smol-rs/next

Bump to v2.0.3
This commit is contained in:
Taiki Endo 2021-03-20 19:56:05 +09:00 committed by GitHub
commit 1019f90247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -62,3 +62,4 @@ jobs:
run: echo 'polling = { path = ".." }' >> async-io/Cargo.toml
- name: Test async-io
run: cargo test --manifest-path=async-io/Cargo.toml
if: matrix.rust != '1.40.0'

View File

@ -1,3 +1,7 @@
# Version 2.0.3
- Update `cfg-if` dependency to 1.
# Version 2.0.2
- Replace manual pointer conversion with `as_ptr()` and `as_mut_ptr()`.
@ -30,7 +34,7 @@
# Version 1.0.1
- Fix a typo in the readme.
-
# Version 1.0.0
- Stabilize.

View File

@ -1,6 +1,9 @@
[package]
name = "polling"
version = "2.0.2"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.0.3"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Portable interface to epoll, kqueue, event ports, and wepoll"