From 9dfe484472a2922c81b8538fdb918b9e7086196b Mon Sep 17 00:00:00 2001 From: Noah Jenner <64815328+Eutropios@users.noreply.github.com> Date: Tue, 25 Jul 2023 18:25:46 -0700 Subject: [PATCH] Modify PyPA classifiers and Shields.io badge URLs (#6082) ## Summary Updated `pyproject.toml` classifiers from `"Development Status :: 4 - Beta"` to `"Development Status :: 5 - Production/Stable"` to reflect the transition from Beta to Full Release. Updated the `README.md` to use `.com/astral-sh/ruff/...` instead of `.com/charliermarsh/ruff/...` in Shields.io badges to reflect the transition to a company. ## Test Plan Utilized the official PyPA classifiers list (located at: https://pypi.org/classifiers/) Previewed the markdown file in different browsers on Github to ensure all badges and logos still render properly. --- README.md | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bb63153983..0959de2c3c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Ruff -[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) +[![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) [![image](https://img.shields.io/pypi/v/ruff.svg)](https://pypi.python.org/pypi/ruff) [![image](https://img.shields.io/pypi/l/ruff.svg)](https://pypi.python.org/pypi/ruff) [![image](https://img.shields.io/pypi/pyversions/ruff.svg)](https://pypi.python.org/pypi/ruff) @@ -424,13 +424,13 @@ Ruff is used by a number of major open-source projects and companies, including: If you're using Ruff, consider adding the Ruff badge to project's `README.md`: ```md -[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) +[![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) ``` ...or `README.rst`: ```rst -.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json +.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json :target: https://github.com/astral-sh/ruff :alt: Ruff ``` @@ -438,7 +438,7 @@ If you're using Ruff, consider adding the Ruff badge to project's `README.md`: ...or, as HTML: ```html -Ruff +Ruff ``` ## License @@ -447,6 +447,6 @@ MIT
- +
diff --git a/pyproject.toml b/pyproject.toml index 2530a1e7d9..ea0a7d6091 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ keywords = [ "clippy", ] classifiers = [ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License",