Skip to content
This repository has been archived by the owner on Oct 5, 2020. It is now read-only.

Update to nextgen #4

Merged
merged 5 commits into from Feb 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -101,3 +101,4 @@ ENV/
.mypy_cache/

tmp/
_build
7 changes: 7 additions & 0 deletions CHANGELOG.rst
@@ -0,0 +1,7 @@
=========
Changelog
=========
v1.0.8
------

- create CHANGELOG.rst
3 changes: 3 additions & 0 deletions Makefile
Expand Up @@ -23,5 +23,8 @@ clean-git:
package: init clean-git report clean
python setup.py sdist

tag:
git tag -a v$(python -c 'import argutil; print(argutil.VERSION)') -F CHANGELOG.rst

publish: package
twine upload dist/*
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -10,8 +10,8 @@ parsers
:target: https://travis-ci.org/cmccandless/argutil
.. |Coverage Status| image:: https://coveralls.io/repos/github/cmccandless/argutil/badge.svg?branch=master
:target: https://coveralls.io/github/cmccandless/argutil?branch=master&service=github
.. |PyPI| image:: https://img.shields.io/pypi/v/nine.svg
:target: https://pypi.org/project/argutil/
.. |PyPI| image:: https://badge.fury.io/py/argutil.svg
:target: https://badge.fury.io/py/argutil
.. |Updates| image:: https://pyup.io/repos/github/cmccandless/argutil/shield.svg
:target: https://pyup.io/repos/github/cmccandless/argutil/
.. |Python 3| image:: https://pyup.io/repos/github/cmccandless/argutil/python-3-shield.svg
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Expand Up @@ -2,7 +2,7 @@
name = argutil
version = attr: argutil.VERSION
description = Wrapper for argparse that uses JSON config files to define command line parsers
long_description = file: README.rst, LICENSE.rst
long_description = file: README.rst, CHANGELOG.rst, LICENSE.rst
author = cmccandless
keywords = commandline, json
license = file: LICENSE
Expand Down