Skip to content

Commit

Permalink
v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tormol committed Mar 24, 2021
1 parent 3df47e0 commit 323c3d4
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uds"
version = "0.2.3"
version = "0.2.4"
description = """
A unix domain socket crate that supports abstract addresses, fd-passing and seqpacket sockets.
"""
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ To enable it, add this to Cargo.toml:

```toml
[dependencies]
uds = {version="0.2.3", features=["mio"]}
uds = {version="0.2.4", features=["mio"]}
```

The extension traits can also be implement for [mio-uds](https://github.com/alexcrichton/mio-uds) types:
Expand All @@ -85,14 +85,14 @@ To enable them, add this to Cargo.toml:

```toml
[dependencies]
uds = {version="0.2.3", features=["mio-uds"]}
uds = {version="0.2.4", features=["mio-uds"]}
```

Mio 0.7 is also supported:

```toml
[dependencies]
uds = {version="0.2.3", features=["mio_07"]}
uds = {version="0.2.4", features=["mio_07"]}
```

## tokio integration
Expand All @@ -104,7 +104,7 @@ To enable it, add this to Cargo.toml:

```toml
[dependencies]
uds = {version="0.2.3", features=["tokio"]}
uds = {version="0.2.4", features=["tokio"]}
```

## Minimum Rust version
Expand Down
9 changes: 9 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 0.2.4 (2021-03-25)
==========================
* Implement peer credentials on NetBSD and DragonFly BSD.
* Add `initial_peer_selinux_context()`.
* Add `initial_peer_credentials()` to `::tokio::UnixSeqpacketConn`.
* Add `bind_addr()` and `local_addr()` to `::tokio::UnixSeqpacketListener`.
* Add `connect_addr()`, `connect_from_addr()`, `local_addr()` and `peer_addr()`
to `::tokio::UnixSeqpacketConn`.

Version 0.2.3 (2021-03-06)
==========================
* Add `send_to_unix_addr()`, `recv_from_unix_addr()`, `peek_from_unix_addr()` and vectored variants to `UnixDatagramExt`.
Expand Down

0 comments on commit 323c3d4

Please sign in to comment.