Skip to content

Commit

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

1.0.2 (unreleased)
1.1.0 (2020-05-04)
------------------

- Recognize simple hostname:path git URLs (GH: #3).
Expand Down
2 changes: 1 addition & 1 deletion gitlab_jobs.py
Expand Up @@ -16,7 +16,7 @@
import gitlab


__version__ = '1.0.2.dev0'
__version__ = '1.1.0'


def get_project_name_from_git_url() -> Optional[str]:
Expand Down
8 changes: 4 additions & 4 deletions release.mk
@@ -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

0 comments on commit b5fe1ce

Please sign in to comment.