Skip to content

Commit

Permalink
Release version 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ypid committed Feb 13, 2017
1 parent 37001e1 commit da29ead
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ and `human-readable changelog <http://keepachangelog.com/en/0.3.0/>`__.
yaml4rst master - unreleased
----------------------------

.. _yaml4rst master: https://github.com/ypid/yaml4rst/compare/v0.1.2...master
.. _yaml4rst master: https://github.com/ypid/yaml4rst/compare/v0.1.3...master


`yaml4rst v0.1.3`_ - 2017-02-14
-------------------------------

.. _yaml4rst v0.1.3: https://github.com/ypid/yaml4rst/compare/v0.1.2...v0.1.3

Changed
~~~~~~~
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PIP_OPTIONS = --user
RELEASE_OPENPGP_FINGERPRINT ?= C505B5C93B0DB3D338A1B6005FE92C12EE88E1F0
RELEASE_OPENPGP_CMD ?= gpg
RELEASE_OPENPGP_CMD ?= $(shell git config --get gpg.program || echo 'gpg')
PYPI_REPO ?= pypi
NOSETESTS ?= $(shell command -v nosetests3 nosetests | head -n 1)
NOSE2 ?= $(shell command -v nose2-3 nose2-3.4 | head -n 1)
Expand Down Expand Up @@ -166,11 +166,11 @@ release-sign: distclean build
rm -rf dist_signed
mv dist dist_signed
find dist_signed -type f -regextype posix-extended -regex '^.*(:?\.(:?tar\.gz|whl))$$' -print0 \
| xargs --null --max-args=1 $(RELEASE_OPENPGP_CMD) --default-key "$(RELEASE_OPENPGP_FINGERPRINT)" --detach-sign --armor
| xargs --null --max-args=1 -I '{}' $(RELEASE_OPENPGP_CMD) --local-user "$(RELEASE_OPENPGP_FINGERPRINT)" --detach-sign --armor --output '{}.asc' '{}'
git tag --sign --local-user "$(RELEASE_OPENPGP_FINGERPRINT)" --message "Released version $(shell ./setup.py --version)" "v$(shell ./setup.py --version)"

.PHONY: release-prepare
release-prepare: check release-versionbump release-sign
release-prepare: release-versionbump release-sign

.PHONY: pypi-register
pypi-register: build
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
author = re.search(r'^(?P<name>[^<]+) <(?P<email>.*)>$', yaml4rst.__author__)

project = u'yaml4rst'
copyright = u'2016, ' + author.group('name')
copyright = u'2016-2017, ' + author.group('name')
author = author.group('name')

# The version info for the project you're documenting, acts as replacement for
Expand Down
4 changes: 2 additions & 2 deletions yaml4rst/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"""

# https://stackoverflow.com/a/16084844
__version__ = '0.1.2'
__version__ = '0.1.3'

__license__ = 'AGPL-3.0'
__author__ = 'Robin Schneider <ypid@riseup.net>'
__copyright__ = 'Copyright (C) 2016 Robin Schneider <ypid@riseup.net>'
__copyright__ = 'Copyright (C) 2016-2017 Robin Schneider <ypid@riseup.net>'

__all__ = ['__version__', '__license__', '__author__', '__copyright__']

Expand Down

0 comments on commit da29ead

Please sign in to comment.