From ccdf23ceaeb90e7eb29a2461d6de66549c0d3a58 Mon Sep 17 00:00:00 2001 From: deoxy Date: Fri, 22 Mar 2024 12:47:29 +0900 Subject: [PATCH 1/4] Update _version.py --- pysen/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysen/_version.py b/pysen/_version.py index daecfa5..5b0f7f2 100644 --- a/pysen/_version.py +++ b/pysen/_version.py @@ -1 +1 @@ -__version__ = "0.10.6" +__version__ = "0.10.7" From aad5437920e4dec3cc8cd108a28148069ef4d3b3 Mon Sep 17 00:00:00 2001 From: deoxy Date: Fri, 22 Mar 2024 19:55:25 +0900 Subject: [PATCH 2/4] Update _version.py --- pysen/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysen/_version.py b/pysen/_version.py index 5b0f7f2..ae6db5f 100644 --- a/pysen/_version.py +++ b/pysen/_version.py @@ -1 +1 @@ -__version__ = "0.10.7" +__version__ = "0.11.0" From 5a399334c7c2bd5c45741f239e68a636da6b8798 Mon Sep 17 00:00:00 2001 From: Linsho Kaku Date: Fri, 22 Mar 2024 20:08:51 +0900 Subject: [PATCH 3/4] update docs version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ad4a3c7..7b2bfa4 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 From a05138b5989a7faae34a42906423f6254cb12df7 Mon Sep 17 00:00:00 2001 From: Linsho Kaku Date: Fri, 22 Mar 2024 20:10:02 +0900 Subject: [PATCH 4/4] update other relative version --- README.md | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7b2bfa4..05a9826 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ poetry add -D pysen==0.11.0 -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