Skip to content

Commit

Permalink
Release v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cemsbr committed Nov 15, 2021
1 parent 9ec10bb commit 5ee598c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [3.1.0] - 2021-11-15
### Added
- Black Friday is near, so we added Black support! :) Thank you, @viniarck.

### Changed
- Using GitHub actions instead of travis-ci.

## [3.0.0] - 2020-10-23
## Changed
- Pylint's duplicate-code is not disabled anymore, since its parser has multi-line support.
Expand Down Expand Up @@ -60,7 +67,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Unused code to parse pyflakes and radon
- dev: dependency management via requirements file (use pipenv)

[Unreleased]: https://github.com/cemsbr/yala/compare/v3.0.0...HEAD
[Unreleased]: https://github.com/cemsbr/yala/compare/v3.1.0...HEAD
[3.1.0]: https://github.com/cemsbr/yala/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/cemsbr/yala/compare/v2.2.1...v3.0.0
[2.2.1]: https://github.com/cemsbr/yala/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/cemsbr/yala/compare/v2.1.0...v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion yala/__init__.py
Expand Up @@ -2,7 +2,7 @@
import logging.config
from pathlib import Path

__version__ = "3.0.1"
__version__ = "3.1.0"

CONFIG_PATH = Path(__file__).parent / "logging.ini"
logging.config.fileConfig(str(CONFIG_PATH), disable_existing_loggers=False)

0 comments on commit 5ee598c

Please sign in to comment.