release prep

This commit is contained in:
Manuel Barkhau 2020-10-18 21:01:31 +00:00
parent aed87ee5dd
commit daa2ec7dfc
3 changed files with 9 additions and 2 deletions

View file

@ -1,7 +1,7 @@
# Changelog for https://github.com/mbarkhau/pycalver
## BumpVer 2020.1042-beta
## BumpVer 2020.1100-beta
Rename package and module from PyCalVer to BumpVer. This name change is due to confusion that this project is either Python specific, or only suitible for CalVer versioning schemes, neither of which is the case.
@ -53,6 +53,11 @@ Many thanks to contributors of this release: @LucidOne, @khanguslee, @chaudum
[gitlab_i8]: https://gitlab.com/mbarkhau/pycalver/-/issues/8
## PyCalVer v202010.1042
- Add deprication warning to README.md
## PyCalVer v201907.0036
- Fix: Don't use git/hg command if `commit=False` is configured (thanks @valentin87)

View file

@ -564,6 +564,8 @@ bump_version:
## Create python sdist and bdist_wheel files
.PHONY: dist_build
dist_build:
@rm -rf build/lib3to6_out/
@rm -rf build/bdist*
$(DEV_ENV_PY) setup.py sdist;
$(DEV_ENV_PY) setup.py bdist_wheel --python-tag=$(BDIST_WHEEL_PYTHON_TAG);
@rm -rf src/*.egg-info

View file

@ -89,7 +89,7 @@ addopts = --doctest-modules
[bumpver]
current_version = "2020.1041-beta"
current_version = "2020.1099-beta"
version_pattern = "YYYY.BUILD[-TAG]"
commit_message = "bump {old_version} -> {new_version}"
commit = True