Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cemsbr committed Oct 10, 2019
1 parent a5d3402 commit 9200e00
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [2.0.0] - 2019-10-10

## Added
- Flake8 support
- Pyflakes support
- Option to choose linters to install, or "all" (check README)

## Changed
- Install only isort and pycodestyle by default. For the old behaviour: `pip install yala[all]`

## [1.8.0] - 2019-10-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ update-deps:

upload: clean
python setup.py clean sdist bdist_wheel
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
twine upload dist/*

watch:
while [ true ]; do \
Expand Down
2 changes: 1 addition & 1 deletion yala/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging.config
from pathlib import Path

__version__ = '1.8.0'
__version__ = '2.0.0'

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

0 comments on commit 9200e00

Please sign in to comment.