Skip to content

Commit 4971561

Browse files
authored
Release v1.1.3rc0 (#17)
Additionally, fixes #13 Signed-off-by: Stavros Ntentos <[email protected]>
1 parent f8da197 commit 4971561

File tree

3 files changed

+41
-5
lines changed

3 files changed

+41
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,32 @@
22

33
## [Unreleased]
44

5-
## [1.1.3] - 2023-10-15
5+
## [1.1.3] - 2023-10-23
6+
7+
This is the first release after maintenance was assumed by https://github.com/stdedos.
8+
9+
The focus of this release was to improve automation:
10+
* Fix the continuous integration,
11+
* Run tests as part of branches and PRs,
12+
* Use `.pre-commit-config.yaml` file to upkeep the code quality, and
13+
* Automate the release process
14+
15+
There should be no functional changes in this release, although there are changes in the source code.
16+
17+
A heartfelt thank you to https://github.com/Pierre-Sassoulas for his invaluable contributions to the continued maintenance of this project!
618

719
### Fixed
20+
821
- The continuous integration was fixed, as a new maintenance team was assembled.
922

23+
### Added
24+
25+
- Added an extensive `.pre-commit-config.yaml` file to upkeep the code quality.
26+
It includes, among others, `black`, `mypy` (in non-strict mode yet), `ruff`, and `pylint`.
27+
28+
### Changed
29+
30+
- Redirected all repository URLs to the https://github.com/pylint-dev/pylint-pytest.
1031

1132
## [1.1.2] - 2021-04-19
1233
### Fixed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
# pylint-pytest
22

3-
[![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)
4-
![PyPI - Downloads](https://img.shields.io/pypi/dd/pylint-pytest)
53
![PyPI - Version](https://img.shields.io/pypi/v/pylint-pytest)
64
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pylint-pytest)
5+
![PyPI - Downloads](https://img.shields.io/pypi/dd/pylint-pytest)
6+
![PyPI - License](https://img.shields.io/pypi/l/pylint-pytest)
7+
8+
[![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)
79
[![codecov](https://codecov.io/gh/pylint-dev/pylint-pytest/graph/badge.svg?token=NhZDLKmomd)](https://codecov.io/gh/pylint-dev/pylint-pytest)
810

11+
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
12+
[![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)
13+
[![Checked with mypy](https://www.mypy-lang.org/static/mypy_badge.svg)](https://mypy-lang.org/)
14+
15+
[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/stdedos)
16+
917
A Pylint plugin to suppress pytest-related false positives.
1018

1119
## Installation

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,18 @@
1111

1212
setup(
1313
name="pylint-pytest",
14-
version="1.1.3a0",
14+
version="1.1.3rc0",
1515
author="Stavros Ntentos",
1616
author_email="[email protected]",
1717
license="MIT",
18-
url="https://github.com/reverbc/pylint-pytest",
18+
url="https://github.com/pylint-dev/pylint-pytest",
19+
project_urls={
20+
"Changelog": "https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md",
21+
"Documentation": "https://github.com/pylint-dev/pylint-pytest#readme",
22+
"Say Thanks!": "https://saythanks.io/to/stdedos",
23+
"Source": "https://github.com/pylint-dev/pylint-pytest",
24+
"Tracker": "https://github.com/pylint-dev/pylint-pytest/issues",
25+
},
1926
description="A Pylint plugin to suppress pytest-related false positives.",
2027
long_description=long_description,
2128
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)