From bae101822ddb31cf12400ec363897378f466d0a3 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Wed, 19 Apr 2023 14:02:00 -0700 Subject: [PATCH] chore: bump to Ruff 0.0.262 (#35) --- .version | 2 +- README.md | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.version b/.version index e7b2391..1e62999 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.0.261 +0.0.262 diff --git a/README.md b/README.md index 3266d84..11594bb 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Add this to your `.pre-commit-config.yaml`: ```yaml - repo: https://github.com/charliermarsh/ruff-pre-commit # Ruff version. - rev: 'v0.0.261' + rev: 'v0.0.262' hooks: - id: ruff ``` @@ -22,7 +22,7 @@ Or, to enable autofix: ```yaml - repo: https://github.com/charliermarsh/ruff-pre-commit # Ruff version. - rev: 'v0.0.261' + rev: 'v0.0.262' hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] diff --git a/setup.py b/setup.py index 52a6d10..12864ad 100644 --- a/setup.py +++ b/setup.py @@ -6,5 +6,5 @@ from setuptools import setup setup( name='pre_commit_placeholder_package', version='0.0.0', - install_requires=['ruff==0.0.261'], + install_requires=['ruff==0.0.262'], )