From 4971561e517517869e424d2f9a8d3e388bb93fc5 Mon Sep 17 00:00:00 2001 From: Stavros Ntentos <133706+stdedos@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:55:29 +0300 Subject: [PATCH] Release v1.1.3rc0 (#17) Additionally, fixes https://github.com/pylint-dev/pylint-pytest/issues/13 Signed-off-by: Stavros Ntentos <133706+stdedos@users.noreply.github.com> --- CHANGELOG.md | 23 ++++++++++++++++++++++- README.md | 12 ++++++++++-- setup.py | 11 +++++++++-- 3 files changed, 41 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea16bb..7f5531a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,32 @@ ## [Unreleased] -## [1.1.3] - 2023-10-15 +## [1.1.3] - 2023-10-23 + +This is the first release after maintenance was assumed by https://github.com/stdedos. + +The focus of this release was to improve automation: +* Fix the continuous integration, +* Run tests as part of branches and PRs, +* Use `.pre-commit-config.yaml` file to upkeep the code quality, and +* Automate the release process + +There should be no functional changes in this release, although there are changes in the source code. + +A heartfelt thank you to https://github.com/Pierre-Sassoulas for his invaluable contributions to the continued maintenance of this project! ### Fixed + - The continuous integration was fixed, as a new maintenance team was assembled. +### Added + +- Added an extensive `.pre-commit-config.yaml` file to upkeep the code quality. + It includes, among others, `black`, `mypy` (in non-strict mode yet), `ruff`, and `pylint`. + +### Changed + +- Redirected all repository URLs to the https://github.com/pylint-dev/pylint-pytest. ## [1.1.2] - 2021-04-19 ### Fixed diff --git a/README.md b/README.md index d891922..8e57bce 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,19 @@ # pylint-pytest -[![Github - Testing](https://github.com/pylint-dev/pylint-pytest/actions/workflows/run-tests.yaml/badge.svg)](https://github.com/pylint-dev/pylint-pytest/actions/workflows/run-tests.yaml) -![PyPI - Downloads](https://img.shields.io/pypi/dd/pylint-pytest) ![PyPI - Version](https://img.shields.io/pypi/v/pylint-pytest) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pylint-pytest) +![PyPI - Downloads](https://img.shields.io/pypi/dd/pylint-pytest) +![PyPI - License](https://img.shields.io/pypi/l/pylint-pytest) + +[![Github - Testing](https://github.com/pylint-dev/pylint-pytest/actions/workflows/run-tests.yaml/badge.svg)](https://github.com/pylint-dev/pylint-pytest/actions/workflows/run-tests.yaml) [![codecov](https://codecov.io/gh/pylint-dev/pylint-pytest/graph/badge.svg?token=NhZDLKmomd)](https://codecov.io/gh/pylint-dev/pylint-pytest) +[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) +[![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) +[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/) + +[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/stdedos) + A Pylint plugin to suppress pytest-related false positives. ## Installation diff --git a/setup.py b/setup.py index 0384661..25ce836 100644 --- a/setup.py +++ b/setup.py @@ -11,11 +11,18 @@ setup( name="pylint-pytest", - version="1.1.3a0", + version="1.1.3rc0", author="Stavros Ntentos", author_email="133706+stdedos@users.noreply.github.com", license="MIT", - url="https://github.com/reverbc/pylint-pytest", + url="https://github.com/pylint-dev/pylint-pytest", + project_urls={ + "Changelog": "https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md", + "Documentation": "https://github.com/pylint-dev/pylint-pytest#readme", + "Say Thanks!": "https://saythanks.io/to/stdedos", + "Source": "https://github.com/pylint-dev/pylint-pytest", + "Tracker": "https://github.com/pylint-dev/pylint-pytest/issues", + }, description="A Pylint plugin to suppress pytest-related false positives.", long_description=long_description, long_description_content_type="text/markdown",