From aa8661e4efa276f0af034d858e0be1cd1db4af20 Mon Sep 17 00:00:00 2001 From: Michka Popoff Date: Mon, 27 Jul 2020 22:31:28 +0200 Subject: [PATCH] Release 2.0.1 --- CHANGELOG.md | 5 +++++ docs/releasing.rst | 6 +++++- pygccxml/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41ebf0b6..2b48af3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ Changes Version 2.1.0 (unreleased) -------------------------- +Version 2.0.1 +------------- + +1. Minor description and doc updates for release uploads + Version 2.0.0 ------------- diff --git a/docs/releasing.rst b/docs/releasing.rst index 3347f99e..9a342d51 100644 --- a/docs/releasing.rst +++ b/docs/releasing.rst @@ -15,9 +15,13 @@ Uploading to pypi The documentation for the building and uploading can be found here: `pypi`_ +Cleanup your dist: + +``rm -rf dist`` + The wheels are built with: -``python setup.py bdist_wheel --universal`` +``python3 setup.py bdist_wheel --universal`` They are uploaded with: diff --git a/pygccxml/__init__.py b/pygccxml/__init__.py index 6254de62..a643e563 100644 --- a/pygccxml/__init__.py +++ b/pygccxml/__init__.py @@ -41,4 +41,4 @@ # TODO: # 1. Add "explicit" property for constructors -__version__ = '2.0.0' +__version__ = '2.0.1' diff --git a/setup.py b/setup.py index a87a6283..a647e238 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup(name="pygccxml", version=version, author="Roman Yakovenko", - author_email="roman yakovenko at gmail com", + author_email="romanyakovenko@gmail.com", maintainer="Michka Popoff and the Insight Software Consortium", maintainer_email="castxml@public.kitware.com", description="Python package for easy C++ declarations navigation.",