Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bkolobara committed Aug 9, 2022
1 parent b8253ca commit 64829ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 = "lunatic-log"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
description = "A logging library for lunatic Rust applications"
repository = "https://github.com/lunatic-solutions/logger-rs"
Expand Down
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ running processes.
Add it as a dependency:

```toml
lunatic-log = "0.1"
lunatic-log = "0.2"
```

In your code:
Expand All @@ -25,7 +25,7 @@ use lunatic_log::{info, subscriber::fmt::FmtSubscriber, LevelFilter};

fn main() {
// Initialize subscriber
lunatic_log::init(FmtSubscriber::new(LevelFilter::Info));
lunatic_log::init(FmtSubscriber::new(LevelFilter::Info).pretty());

// Log message
info!("Hello, {}", "World");
Expand Down

0 comments on commit 64829ff

Please sign in to comment.