commit e14928509b2170cc5921a46015d553baa00248ca Author: Matt Traudt sirmatt@ksu.edu Date: Wed Jul 11 10:55:27 2018 -0400
Release 0.6.0
**Important changes**:
- The way users configure logging has changed. No longer are most users expected to be familiar with how to configure python's standard logging library with a config file. Instead we've abstracted out the setting of log level, format, and destinations to make these settings more accessible to users. Expert users familiar with [the logging config file format][logconffmt] can still make tweaks.
Summary of changes:
- Make logging configuration easier for the user. - Add UML diagrams to documentation. They can be found in docs/source/images/ and regenerated with `make umlsvg` in docs/.
[logconffmt]: https://docs.python.org/3/library/logging.config.html#logging-config-filefor... --- CHANGELOG.md | 22 +++++++++++++++++++++- sbws/__init__.py | 2 +- tests/unit/lib/data/v3bw/20180425_131057.v3bw | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8608b1a..c94761d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
+## [0.6.0] - 2018-07-11 + +**Important changes**: + +- The way users configure logging has changed. No longer are most users + expected to be familiar with how to configure python's standard logging +library with a config file. Instead we've abstracted out the setting of log +level, format, and destinations to make these settings more accessible to +users. Expert users familiar with [the logging config file format][logconffmt] +can still make tweaks. + +Summary of changes: + +- Make logging configuration easier for the user. +- Add UML diagrams to documentation. They can be found in docs/source/images/ + and regenerated with `make umlsvg` in docs/. + +[logconffmt]: https://docs.python.org/3/library/logging.config.html#logging-config-filefor... + ### Added
- UML diagrams to documentation. In docs/ run `make umlsvg` to rebuild them. @@ -109,6 +128,7 @@ So fix that. - `earliest_bandwidth` being the newest bw not the oldest (thanks juga0) - `node_id` was missing the character "$" at the beginning
-[Unreleased]: https://github.com/pastly/simple-bw-scanner/compare/v0.5.0...master +[Unreleased]: https://github.com/pastly/simple-bw-scanner/compare/v0.6.0...master +[0.6.0]: https://github.com/pastly/simple-bw-scanner/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/pastly/simple-bw-scanner/compare/v0.4.1...v0.5.0 [0.4.1]: https://github.com/pastly/simple-bw-scanner/compare/v0.4.0...v0.4.1 diff --git a/sbws/__init__.py b/sbws/__init__.py index 1cb6639..ef7eb44 100644 --- a/sbws/__init__.py +++ b/sbws/__init__.py @@ -1 +1 @@ -__version__ = '0.5.1-dev' +__version__ = '0.6.0' diff --git a/tests/unit/lib/data/v3bw/20180425_131057.v3bw b/tests/unit/lib/data/v3bw/20180425_131057.v3bw index 911d483..602943b 100644 --- a/tests/unit/lib/data/v3bw/20180425_131057.v3bw +++ b/tests/unit/lib/data/v3bw/20180425_131057.v3bw @@ -5,6 +5,6 @@ file_created=2018-04-25T13:10:57 generator_started=2018-04-16T14:09:05 latest_bandwidth=2018-04-17T14:09:07 software=sbws -software_version=0.5.1-dev +software_version=0.6.0 ==== bw=54 error_circ=0 error_misc=0 error_stream=1 master_key_ed25519=g+Shk00y9Md0hg1S6ptnuc/wWKbADBgdjT0Kg+TSF3s nick=A node_id=$AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA rtt=456 success=1 time=2018-04-17T14:09:07
tor-commits@lists.torproject.org