v0.5.0
What's Changed
- !feat(client): uds support by @danielsig727 in #47
Breaking Changes
- Removed
new
method fromClient
and addednew_tcp
andnew_unix
methods.- Removed
addr
option fromConfig
.
- Removed
// Before
let client = Client::new(&Config {
addr: "127.0.0.1:24224".parse().unwrap(),
..Default::default()
})
// After
let client = Client::new_tcp(
"127.0.0.1:24224".parse().unwrap(),
&Config {..Default::default()}
)
New Contributors
- @danielsig727 made their first contribution in #47
Full Changelog: v0.4.4...v0.5.0