diff --git a/CHANGELOG.md b/CHANGELOG.md index 28fef1941d..765cc8c7bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [0.2.9](https://github.com/maidsafe/safe_network/compare/v0.2.8...v0.2.9) (2021-06-23) + + +### Bug Fixes + +* **logs:** use new module name for default logging ([3de6338](https://github.com/maidsafe/safe_network/commit/3de6338a3f12ca6a7edcb1ce7db2ce20f5a8b7ba)) + ### [0.2.8](https://github.com/maidsafe/safe_network/compare/v0.2.7...v0.2.8) (2021-06-22) diff --git a/Cargo.toml b/Cargo.toml index 469f2a6b4e..f13b551e5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ license = "GPL-3.0" name = "safe_network" readme = "README.md" repository = "https://github.com/maidsafe/safe_network" -version = "0.2.8" +version = "0.2.9" [[bin]] name = "sn_node" @@ -28,7 +28,6 @@ always-joinable = [ ] [dependencies] base64 = "~0.10.1" -flexi_logger = { version = "0.18", features = ["async"] } hex = "~0.3.2" lazy_static = "1" pickledb = "~0.4.0" @@ -68,6 +67,10 @@ urlencoding = "1.1.1" url = "2.2.0" dashmap = "~4.0.2" + [dependencies.flexi_logger] + version = "0.18" + features = [ "async" ] + [dependencies.tracing] version = "~0.1.22" default-features = false