diff --git a/README.md b/README.md index ad4a3c7..05a9826 100644 --- a/README.md +++ b/README.md @@ -23,9 +23,9 @@ pip install black==21.10b0 flake8==4.0.1 isort==5.10.1 mypy==0.910 ```sh # pipenv -pipenv install --dev "pysen[lint]==0.10.6" +pipenv install --dev "pysen[lint]==0.11.0" # poetry -poetry add -D pysen==0.10.6 -E lint +poetry add -D pysen==0.11.0 -E lint ``` ## Quickstart: Set up linters using pysen @@ -33,7 +33,7 @@ poetry add -D pysen==0.10.6 -E lint Put the following pysen configuration to either `pysen.toml` or `pyproject.toml` of your python package: ```toml [tool.pysen] -version = "0.10" +version = "0.11" [tool.pysen.lint] enable_black = true @@ -206,7 +206,7 @@ Please refer to `pysen/pyproject_model.py` for the latest model. Here is an example of a basic configuration: ```toml [tool.pysen] -version = "0.10" +version = "0.11" [tool.pysen.lint] enable_black = true diff --git a/pyproject.toml b/pyproject.toml index 66bf499..880f506 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ settings_dir = "." [tool.pysen] -version = "0.10" +version = "0.11" [tool.pysen.lint] enable_black = true diff --git a/pysen/_version.py b/pysen/_version.py index daecfa5..ae6db5f 100644 --- a/pysen/_version.py +++ b/pysen/_version.py @@ -1 +1 @@ -__version__ = "0.10.6" +__version__ = "0.11.0"