diff --git a/README.md b/README.md index b99f4ff..655ec6e 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Sync with poetry [![CI](https://github.com/floatingpurr/sync_with_poetry/actions/workflows/ci.yml/badge.svg)](https://github.com/floatingpurr/sync_with_poetry/actions/workflows/ci.yml) -[![codecov](https://codecov.io/gh/floatingpurr/sync_with_poetry/branch/main/graph/badge.svg?token=RNDNWATE25)](https://codecov.io/gh/floatingpurr/sync_with_poetry) +[![codecov](https://codecov.io/gh/floatingpurr/sync_with_poetry/graph/badge.svg?token=T1KUB0CUON)](https://codecov.io/gh/floatingpurr/sync_with_poetry) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/floatingpurr/sync_with_poetry/main.svg)](https://results.pre-commit.ci/latest/github/floatingpurr/sync_with_poetry/main) [![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit) [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) @@ -120,6 +120,7 @@ Supported packages out-of-the-box are listed in - isort - mypy - pyupgrade +- ruff You can create your very own package list, passing a custom json file with the arg `--db`. Such a file specifies how to map a package to the corresponding diff --git a/pyproject.toml b/pyproject.toml index 5d94b62..3bf3b5d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ authors = ["Andrea Mignone "] description = "Sync .pre-commit-config.yaml repos starting from poetry.lock" name = "sync_with_poetry" -version = "1.0.0" +version = "1.2.0" [tool.poetry.dependencies] python = ">=3.9" diff --git a/sync_with_poetry/__init__.py b/sync_with_poetry/__init__.py index 5becc17..c68196d 100644 --- a/sync_with_poetry/__init__.py +++ b/sync_with_poetry/__init__.py @@ -1 +1 @@ -__version__ = "1.0.0" +__version__ = "1.2.0" diff --git a/tests/test_meta.py b/tests/test_meta.py index c20d887..f0849a9 100644 --- a/tests/test_meta.py +++ b/tests/test_meta.py @@ -3,4 +3,4 @@ def test_version() -> None: """Test version""" - assert __version__ == "1.0.0" + assert __version__ == "1.2.0"