Skip to content

Commit

Permalink
release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Nov 28, 2024
1 parent c3d22d2 commit 47f5c1c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
```

- Update the version number, by removing the trailing `.dev0` in:
- `setup.py`
- `setup.cfg`
- `src/cltoolkit/__init__.py`

- Create the release commit:
Expand All @@ -36,7 +36,7 @@
- Release to PyPI:
```shell
rm dist/*
python setup.py sdist bdist_wheel
python -m build -n
twine upload dist/*
```

Expand All @@ -47,7 +47,7 @@
```

- Change version for the next release cycle, i.e. incrementing and adding .dev0
- `setup.py`
- `setup.cfg`
- `src/cltoolkit/__init__.py`

- Commit/push the version change:
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = []

typehints_fully_qualified = True
always_document_param_types = True
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = cltoolkit
version = 0.1.2.dev0
version = 0.2.0
author = Johann-Mattis List, Robert Forkel and Frederic Blum
author_email = robert_forkel@eva.mpg.de
description = A Python Library for the Processing of Cross-Linguistic Data
Expand Down
2 changes: 1 addition & 1 deletion src/cltoolkit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from cltoolkit.wordlist import Wordlist
assert Wordlist

__version__ = "0.1.2.dev0"
__version__ = "0.2.0"

0 comments on commit 47f5c1c

Please sign in to comment.