Skip to content

Commit

Permalink
Update _version.py (#49)
Browse files Browse the repository at this point in the history
* Update _version.py

* Update _version.py

* update docs version

* update other relative version
  • Loading branch information
linshokaku committed Mar 25, 2024
1 parent 81cb5ad commit 457e9a5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ 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

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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
settings_dir = "."

[tool.pysen]
version = "0.10"
version = "0.11"

[tool.pysen.lint]
enable_black = true
Expand Down
2 changes: 1 addition & 1 deletion pysen/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.10.6"
__version__ = "0.11.0"

0 comments on commit 457e9a5

Please sign in to comment.