Skip to content

Commit

Permalink
docs: Add changelog about interface changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmanjiro13 committed Nov 17, 2023
1 parent 5c18c07 commit 3b4c906
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

## [v0.5.0](https://github.com/johnmanjiro13/tokio-fluent/compare/v0.4.4...v0.5.0) - 2023-11-17
- !feat(client): uds support by @danielsig727 in https://github.com/johnmanjiro13/tokio-fluent/pull/47
### Breaking Changes
- Removed `new` method from `Client` and added `new_tcp` and `new_unix` methods.
- Removed `addr` option from `Config`.


```rust
// 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()}
)
```

## [v0.4.4](https://github.com/johnmanjiro13/tokio-fluent/compare/v0.4.3...v0.4.4) - 2023-10-29
- chore(deps): update actions/checkout action to v4 by @renovate in https://github.com/johnmanjiro13/tokio-fluent/pull/43
Expand Down

0 comments on commit 3b4c906

Please sign in to comment.