Skip to content

Commit

Permalink
Release version 0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
paulross committed Oct 4, 2017
1 parent 5660dcb commit 3609afc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
History
=======

0.9.7 Beta Release (2017-10-04)
--------------------------------

* Minor fixes.
* Performance optimisations.
* Builds the CPython source tree in 5 hours with 2 CPUs.
* DOcumentation improvements.

0.9.5 Beta Release (2017-10-03)
--------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.6
current_version = 0.9.7
commit = True
tag = True

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

setup(
name='cpip',
version='0.9.6',
version='0.9.7',
description="CPIP is a C/C++ Preprocessor implemented in Python.",
long_description=readme + '\n\n' + history,
author="Paul Ross",
Expand All @@ -48,6 +48,7 @@
keywords='cpip',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
Expand All @@ -59,6 +60,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
],
test_suite='tests',
tests_require=test_requirements,
Expand Down
2 changes: 1 addition & 1 deletion src/cpip/CPIPMain.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"""
__author__ = 'Paul Ross'
__date__ = '2011-07-10'
__version__ = '0.9.6'
__version__ = '0.9.7'
__rights__ = 'Copyright (c) 2008-2017 Paul Ross'

import argparse
Expand Down
5 changes: 4 additions & 1 deletion src/cpip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,21 @@

__author__ = 'Paul Ross'
__date__ = '2014-03-03'
__version__ = '0.9.7'
__rights__ = 'Copyright (c) 2008-2017 Paul Ross'

__all__ = ['core', 'util', 'plot']

"""CPIP: 'C' Preprocessor in Python.
"""

CPIP_VERSION = (0, 9, 5)
CPIP_VERSION = (0, 9, 7)

RELEASE_NOTES = [
"""Release Notes (latest at top).
==============================
2017-10-04: Version 0.9.7. Tested on Python 2.7 and 3.6.
2017-10-03: Version 0.9.5, migrate to GitHub. Tested on Python 2.7 and 3.6.
2014-09-03: Version 0.9.1, various minor fixes. Tested on Python 2.7 and 3.3.
Expand Down

0 comments on commit 3609afc

Please sign in to comment.