Skip to content

Commit

Permalink
Bump hook to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
floatingpurr committed Oct 7, 2024
1 parent 8918f67 commit 0ec7711
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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
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 @@
authors = ["Andrea Mignone <[email protected]>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion sync_with_poetry/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.0"
__version__ = "1.2.0"
2 changes: 1 addition & 1 deletion tests/test_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

def test_version() -> None:
"""Test version"""
assert __version__ == "1.0.0"
assert __version__ == "1.2.0"

0 comments on commit 0ec7711

Please sign in to comment.