From dc77b7dd0a4bd178574e7bfc83a045bd5737d41b Mon Sep 17 00:00:00 2001 From: Stefan Appelhoff Date: Sun, 3 Jan 2021 20:00:07 +0100 Subject: [PATCH] REL 0.5.0 --- .github/CONTRIBUTING.md | 1 - docs/changelog.rst | 4 ++-- pybv/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9662ca0..64e1702 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -40,7 +40,6 @@ The PyPi credentials are handled via a "GitHub secret" 1. go to your python environment for `pybv` 1. Make sure all tests pass and the docs are built cleanly -1. run `pip install -U setuptools wheel twine` 1. update the `__version__` variable in `__init__.py` - remove the `.devN` suffix - if the version preceding the `.devN` suffix is not the version to be diff --git a/docs/changelog.rst b/docs/changelog.rst index 1d6fbe3..f8aee3d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -26,8 +26,8 @@ Here we list a changelog of pybv. :local: :depth: 1 -Current (unreleased) -==================== +0.5.0 (2021-01-03) +================== Changelog ~~~~~~~~~ diff --git a/pybv/__init__.py b/pybv/__init__.py index 51d8160..aee3358 100644 --- a/pybv/__init__.py +++ b/pybv/__init__.py @@ -10,5 +10,5 @@ # # License: BSD (3-clause) -__version__ = '0.5.0.dev0' +__version__ = '0.5.0' from .io import write_brainvision # noqa: F401 diff --git a/setup.py b/setup.py index cddf9d7..446b23d 100644 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: Unix', - 'Operating System :: MacOS' + 'Operating System :: MacOS', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8',