Skip to content

Commit

Permalink
release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Nov 25, 2021
1 parent 706b77b commit 23fbfec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,10 @@ git commit -a -m "release <VERSION>"
git tag -a v<VERSION> -m"<VERSION> release"
```

- Release to PyPI (see https://github.com/di/markdown-description-example/issues/1#issuecomment-374474296):
- Release to PyPI:
```shell
rm dist/*
python setup.py sdist
twine upload dist/*
rm dist/*
python setup.py bdist_wheel
python setup.py sdist bdist_wheel
twine upload dist/*
```

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='cldfcatalog',
version='1.3.3.dev0',
version='1.4.0',
author='Robert Forkel',
author_email='dlce.rdm@eva.mpg.de',
description='Python library to access CLDF reference catalogs',
Expand Down
2 changes: 1 addition & 1 deletion src/cldfcatalog/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from cldfcatalog.repository import * # noqa: F401, F403
from cldfcatalog.config import * # noqa: F401, F403

__version__ = '1.3.3.dev0'
__version__ = '1.4.0'

0 comments on commit 23fbfec

Please sign in to comment.