Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
operutka committed May 10, 2018
1 parent 560f72a commit bafb460
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.2.1 (2018-05-10)

* Make the Error struct public
* Implement Clone for the FlushHandle

## v0.2.0 (2018-05-09)

* Fix duplicate keys in the JSON message
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slog-loggly"
version = "0.2.0"
version = "0.2.1"
authors = ["Angelcam, Inc."]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This is an unofficial Loggly drain for the slog logging infrastructure in Rust.
Add the following dependency into your Cargo.toml:

```
slog-loggly = "0.1.1"
slog-loggly = "0.2.1"
```

See the `examples` directory and the [documentation](https://docs.rs/slog-loggly/) for usage examples.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ use channel::{Receiver, Sender};

use client::LogglyClient;

pub use error::Error;

use serializer::LogglyMessageSerializer;

pub use error::Error;

pub use channel::Flush;

const DEFAULT_SENDER_COUNT: usize = 16;
Expand Down

0 comments on commit bafb460

Please sign in to comment.