Skip to content

v0.5.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 17 Nov 05:55
c2cdcd1

What's Changed

Breaking Changes

  • Removed new method from Client and added new_tcp and new_unix methods.
    • Removed addr option from Config.
// 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

Full Changelog: v0.4.4...v0.5.0