From 73f4e2453266e7b4a7745d381d71eaf24f93c6dc Mon Sep 17 00:00:00 2001 From: juga0 Date: Thu, 4 Apr 2019 11:25:20 +0000 Subject: [PATCH] Bump to version 0.2.0 --- CHANGELOG.rst | 41 ++++++++++++++++++++++++++++++++++++----- opgpcard/__init__.py | 2 +- 2 files changed, 37 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b6cf383..2df9c8a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,37 @@ -Change Log -=========== +Changelog +========= -0.1.0 ------- -* Initial import + +0.2.0 (2019-04-04) +------------------ + +New +~~~ +- Docs: Show global TOC and page source link. +- Docs: show source code link. +- Tests: Add validate_args test. + +Changes +~~~~~~~ +- Gpg_utils:simplify logic and logs +- CI: test python 3.7, upgrade to xenial +- Docs: Generate man with sphinx. +- Update copyright year. +- Gpg_utils: simplify logic and logs. +- Opgpcard: !refactor Add validate_args function +- Cli: Change args order, remove empty help. +- Cli: Add module doc, argparser description. +- Cli: Move to a function args parser initialization. + +Fix +~~~ +- README: Remove paragraph that is no longer true. + + +0.1.4 (2018-05-19) +------------------ +- Include package data. +- Clean files included in distribution. +- Add man. +- Update copyright year. +- Fix tox, travis, clean up. diff --git a/opgpcard/__init__.py b/opgpcard/__init__.py index d626e1b..9e2e5f1 100644 --- a/opgpcard/__init__.py +++ b/opgpcard/__init__.py @@ -25,7 +25,7 @@ from setuptools_scm import get_version version = get_version() except (ImportError, LookupError): - version = '0.1.4' + version = '0.2.0' __version__ = version __author__ = "juga"