diff --git a/RELEASING.md b/RELEASING.md index 534f031..6f330ef 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -28,6 +28,7 @@ git tag -a v -m " release" - Release to PyPI: ```shell +rm dist/* python setup.py clean --all python -m build -n twine upload dist/* diff --git a/setup.cfg b/setup.cfg index 321ecd0..61aa766 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pydplace -version = 3.2.0 +version = 3.2.1.dev0 author = Robert Forkel author_email = robert_forkel@eva.mpg.de description = A cldfbench plugin to curate D-PLACE datasets diff --git a/src/pydplace/__init__.py b/src/pydplace/__init__.py index 2d0dccb..3c2e332 100644 --- a/src/pydplace/__init__.py +++ b/src/pydplace/__init__.py @@ -1,6 +1,6 @@ # from .dataset import DatasetWithSocieties, DatasetWithoutSocieties -__version__ = "3.2.0" +__version__ = "3.2.1.dev0" assert DatasetWithSocieties assert DatasetWithoutSocieties