Skip to content

Commit

Permalink
Preparing release 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed May 4, 2020
1 parent f637d3f commit 31f4f95
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

0.13.2 (unreleased)
0.13.2 (2020-05-04)
-------------------

- More robust Appveyor parsing: accept forward slashes (c:/pythonXY), do not
Expand Down
8 changes: 4 additions & 4 deletions release.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# release.mk version 1.4 (2019-04-23)
# release.mk version 1.5 (2020-05-03)
#
# Helpful Makefile rules for releasing Python packages.
# https://github.com/mgedmin/python-project-skel
Expand All @@ -11,7 +11,7 @@ CHANGELOG_FORMAT ?= $(changelog_ver) ($(changelog_date))
DISTCHECK_DIFF_OPTS ?= $(DISTCHECK_DIFF_DEFAULT_OPTS)

# These should be fine
PYTHON ?= python
PYTHON ?= python3
PYPI_PUBLISH ?= rm -rf dist && $(PYTHON) setup.py -q sdist bdist_wheel && twine check dist/* && twine upload dist/*
LATEST_RELEASE_MK_URL = https://raw.githubusercontent.com/mgedmin/python-project-skel/master/release.mk
DISTCHECK_DIFF_DEFAULT_OPTS = -x PKG-INFO -x setup.cfg -x '*.egg-info' -I'^\#'
Expand Down Expand Up @@ -50,7 +50,7 @@ endif

.PHONY: distcheck-sdist
distcheck-sdist:
make dist
$(MAKE) dist
pkg_and_version=`$(PYTHON) setup.py --name`-`$(PYTHON) setup.py --version` && \
rm -rf tmp && \
mkdir tmp && \
Expand Down Expand Up @@ -102,7 +102,7 @@ check-changelog:

.PHONY: releasechecklist
releasechecklist: check-latest-rules check-latest-version check-version-number check-long-description check-changelog
make distcheck
$(MAKE) distcheck

.PHONY: release
release: releasechecklist do-release
Expand Down
2 changes: 1 addition & 1 deletion src/check_python_versions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
"""
__author__ = 'Marius Gedminas <[email protected]>'
__version__ = '0.13.2.dev0'
__version__ = '0.13.2'

0 comments on commit 31f4f95

Please sign in to comment.