Skip to content

Commit

Permalink
Update version number in Readme and use SPDX license format
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet committed Sep 17, 2022
1 parent b1575b5 commit 22590b4
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
Expand Up @@ -3,7 +3,7 @@ name = "env_logger"
edition = "2018"
version = "0.9.0"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/env-logger-rs/env_logger/"
documentation = "https://docs.rs/env_logger"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ It must be added along with `log` to the project dependencies:
```toml
[dependencies]
log = "0.4.0"
env_logger = "0.8.4"
env_logger = "0.9.0"
```

`env_logger` must be initialized as early as possible in the project. After it's initialized, you can use the `log` macros to do actual logging.
Expand Down Expand Up @@ -88,7 +88,7 @@ Tests can use the `env_logger` crate to see log messages generated during that t
log = "0.4.0"

[dev-dependencies]
env_logger = "0.8.4"
env_logger = "0.9.0"
```

```rust
Expand Down

0 comments on commit 22590b4

Please sign in to comment.