Tags: kettleby/fd-queue
Tags
chore: release (#42) Co-authored-by: release-plz <release-plz@github.com>
chore(release): 1.0.0-beta.3 [skip ci] # [1.0.0-beta.3](v1.0.0-beta.2...v1.0.0-beta.3) (2020-12-28) ### Bug Fixes * **tokio:** upgrade to tokio 1.0.0 ([#26](#26)) ([ebb6035](ebb6035)), closes [#1](#1) ### BREAKING CHANGES * **tokio:** increase the MRSV to 1.45.0 This change will require upgrading old compilers to at least 1.45.0.
chore(release): 1.0.0-beta.2 [skip ci] # [1.0.0-beta.2](v1.0.0-beta.1...v1.0.0-beta.2) (2020-09-26) ### Bug Fixes * **release:** update semantic-release-rust version ([4af78fd](4af78fd))
chore(release): 1.0.0-beta.1 [skip ci] # 1.0.0-beta.1 (2020-09-22) ### Bug Fixes * **mio:** downgrade mio dependancy to 0.6.22 ([7239f50](7239f50)) * **mio:** fix build error for MSRV of 1.36.0 ([1edd059](1edd059)) * **release:** change process for committing version number ([c107074](c107074)) * **release:** correct docs.rs metadata ([89025a2](89025a2)) * **release:** correct inter-artifact links ([d234eca](d234eca)) * **release:** correct stored credentials error ([73555e7](73555e7)) * remove default features ([b68e5bc](b68e5bc)), closes [#5](#5) * **tokio:** change futures dependencies to require tokio-fd feature ([549dcf2](549dcf2)) * **tokio:** change UnixStream::connect to be async ([38c8f9c](38c8f9c)) ### Features * **mio:** add mio support for non-blocking UnixListener ([7b798cb](7b798cb)) * **mio:** add mio support for non-blocking UnixStream ([0f8381f](0f8381f)) * **queue:** add Default impl for QueueFullError ([e6ea1f8](e6ea1f8)) * **release:** add information for initial (pre) release ([a63731b](a63731b)) * **tokio:** add skeleton for tokio support ([d88dd7d](d88dd7d)) * **tokio:** Implement UnixListener for tokio integration ([680d616](680d616)) * **tokio:** Implement UnixStream for tokio integration ([485358e](485358e)) ### BREAKING CHANGES * remove mio-fd, net-fd, and tokio-fd as default features All features are now opt-in features. Crates that previously relied on these features will now have to explicty name the features in the dependencies entry for for "fd-queue" in their "Cargo.toml" files. * **tokio:** This change will cause calls that expected connect() to be synchonous to fail to compile. If you are in an async context you should be able to fix this by ".await"ing the result of the call to connect(). * **mio:** Any uses of this crate with mio version 0.7.0 will no longer work. The resolution of this issue for now is to also downgrade go version 0.6.22.
chore(release): 1.0.0-alpha.4 [skip ci] # [1.0.0-alpha.4](v1.0.0-alpha.3...v1.0.0-alpha.4) (2020-09-21) ### Bug Fixes * **release:** correct docs.rs metadata ([89025a2](89025a2)) * **release:** correct stored credentials error ([73555e7](73555e7))
chore(release): 1.0.0-alpha.3 [skip ci] # [1.0.0-alpha.3](v1.0.0-alpha.2...v1.0.0-alpha.3) (2020-09-20) ### Bug Fixes * **release:** correct inter-artifact links ([d234eca](d234eca))
chore(release): 1.0.0-alpha.2 [skip ci] # [1.0.0-alpha.2](v1.0.0-alpha.1...v1.0.0-alpha.2) (2020-09-20) ### Bug Fixes * **release:** change process for committing version number ([c107074](c107074))
feat(release): add information for initial (pre) release Add descriptive fields to the `[package]` table of `Cargo.toml` and addtional descritive information to `README.md`. Remove the `dry-run` argument for the Semantic Release step of the release workflow. Barring errors in the release workflow, this should result in the initial release of the library.