Skip to content

Commit

Permalink
Release version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ypid committed Nov 5, 2016
1 parent 2641a08 commit 42007e0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,21 @@ and `human-readable changelog <http://keepachangelog.com/en/0.3.0/>`__.
yaml4rst master - unreleased
----------------------------

.. _yaml4rst master: https://github.com/ypid/yaml4rst/compare/v0.1.0...master
.. _yaml4rst master: https://github.com/ypid/yaml4rst/compare/v0.1.1...master


`yaml4rst v0.1.1`_ - 2016-11-05
-------------------------------

.. _yaml4rst v0.1.1: https://github.com/ypid/yaml4rst/compare/v0.1.0...v0.1.1

Fixed
~~~~~

- Fix legacy reST section detection when heading is directly follows by a comment. [ypid_]

- Fix YAML block detection which lead to wrong indention of closing folds. [ypid_]


yaml4rst v0.1.0 - 2016-10-28
----------------------------
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -146,17 +146,18 @@ docs:
.PHONY: release-versionbump
release-versionbump: yaml4rst/_meta.py CHANGES.rst
editor $?
if [[ -n "$(shell git status -s)" ]]; then git commit --all --message="Release version $(shell ./setup.py --version)"; fi
git commit --all --message="Release version $(shell ./setup.py --version)" || :

.PHONY: release-sign
release-sign:
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
git tag --sign --local-user "$(RELEASE_OPENPGP_FINGERPRINT)" "v$(shell ./setup.py --version)"
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 distclean build release-sign
release-prepare: check release-versionbump release-sign

.PHONY: pypi-register
pypi-register: build
Expand Down
2 changes: 1 addition & 1 deletion yaml4rst/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

# https://stackoverflow.com/a/16084844
__version__ = '0.1.0'
__version__ = '0.1.1'

__license__ = 'AGPL-3.0'
__author__ = 'Robin Schneider <ypid@riseup.net>'
Expand Down

0 comments on commit 42007e0

Please sign in to comment.