Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tokio-uds/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.2.7 (July 1, 2020)

* Add Illumos support. (#2563)

# 0.2.6 (February 4, 2020)

* Add `tokio 0.2.x` deprecation notice.
Expand Down
4 changes: 2 additions & 2 deletions tokio-uds/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ name = "tokio-uds"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.2.6"
version = "0.2.7"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://github.com/tokio-rs/tokio"
documentation = "https://docs.rs/tokio-uds/0.2.5/tokio_uds/"
documentation = "https://docs.rs/tokio-uds/0.2.7/tokio_uds/"
description = """
Unix Domain sockets for Tokio
"""
Expand Down
2 changes: 1 addition & 1 deletion tokio-uds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ An implementation of Unix Domain Sockets for Tokio
[`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
[feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags

[Documentation](https://docs.rs/tokio-uds/0.2.5/tokio_uds/)
[Documentation](https://docs.rs/tokio-uds/0.2.7/tokio_uds/)

## License

Expand Down
2 changes: 1 addition & 1 deletion tokio-uds/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![cfg(unix)]
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.6")]
#![doc(html_root_url = "https://docs.rs/tokio-uds/0.2.7")]
#![deny(missing_docs, missing_debug_implementations)]

//! Unix Domain Sockets for Tokio.
Expand Down