Skip to content

Commit

Permalink
chore: bump version 0.2.1.dev0 => 0.2.1 (#36)
Browse files Browse the repository at this point in the history
* chore: update change log
  • Loading branch information
lgpage authored Feb 16, 2023
1 parent 4c8dca7 commit bb3c996
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[bumpversion]
current_version = 0.2.1.dev0
parse =
current_version = 0.2.1
parse =
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<micro>\d+)
(?:\.(?P<release>dev)(?P<devnum>\d+))?
serialize =
serialize =
{major}.{minor}.{micro}.{release}{devnum}
{major}.{minor}.{micro}
commit = True
tag = True
commit = False
tag = False

[bumpversion:part:release]
optional_value = stable
values =
values =
dev
stable

Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
The full list of merged changes is:

- #26: fix: pytest_collect_file to take into account pytest fspath deprecation in Node constructors
- #29: chore: use GitHub actions instead of Travis
- #29: chore: use GitHub workflows in place of Travis
- #30: chore: use markdown project files
- #31: chore: add renovate bot

Special thanks to the following contributors that made this release possible:

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
[![Supported versions](https://img.shields.io/pypi/pyversions/pytest-cython.svg?style=flat)](https://pypi.org/project/pytest-cython)
[![Supported implementations](https://img.shields.io/pypi/implementation/pytest-cython.svg?style=flat)](https://pypi.org/project/pytest-cython)

[![CI Lint Status](https://github.com/lgpage/pytest-cython/actions/workflows/python-check.yml/badge.svg?branch=main)](https://github.com/lgpage/pytest-cython/actions/workflows/python-check.yml?query=branch%3Amain)
[![CI Lint Status](https://github.com/lgpage/pytest-cython/actions/workflows/python-test.yml/badge.svg?branch=main)](https://github.com/lgpage/pytest-cython/actions/workflows/python-test.yml?query=branch%3Amain)
[![CI Check Status](https://github.com/lgpage/pytest-cython/actions/workflows/python-check.yml/badge.svg?branch=main)](https://github.com/lgpage/pytest-cython/actions/workflows/python-check.yml?query=branch%3Amain)
[![CI Tests Status](https://github.com/lgpage/pytest-cython/actions/workflows/python-test.yml/badge.svg?branch=main)](https://github.com/lgpage/pytest-cython/actions/workflows/python-test.yml?query=branch%3Amain)
[![Documentation Status](https://readthedocs.org/projects/pytest-cython/badge/?style=flat)](https://readthedocs.org/projects/pytest-cython)

This [pytest](https://github.com/pytest-dev/pytest) plugin allows for the doctesting of C extension modules for
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='pytest-cython',
version='0.2.1.dev0',
version='0.2.1',
description='A plugin for testing Cython extension modules',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion tests/example-project/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

setup(
name='pytest-cython',
version='0.2.1.dev0',
version='0.2.1',
description="Example Cython project for pytest-cython tests",
package_dir={'': 'src'},
packages=['pypackage'],
Expand Down

0 comments on commit bb3c996

Please sign in to comment.