diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 56eba3f..00a0aa5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,8 +18,8 @@ can be subjective. Thank you for understanding and for wanting to improve pyp! - Update the changelog - Update the version in `CHANGELOG.md` - Update the version in `__version__` -- Update the version in `setup.py` +- Update the version in `pyproject.toml` - `rm -rf dist` -- `python setup.py sdist bdist_wheel` +- `python -m build .` - `twine upload dist/*` - Tag the release on Github diff --git a/pyp.py b/pyp.py index f09742b..a51ada4 100644 --- a/pyp.py +++ b/pyp.py @@ -12,7 +12,7 @@ from typing import Any, Dict, Iterator, List, Optional, Set, Tuple, cast __all__ = ["pypprint"] -__version__ = "1.0.0" +__version__ = "1.1.0" def pypprint(*args, **kwargs): # type: ignore