From 47cd2229344db1a8c76450e15ef9dbdce2ceaaf5 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Wed, 22 Nov 2017 09:41:35 -0800 Subject: [PATCH] bump version to 2.2.0 --- .bump.cfg | 4 ++-- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- quantiphy.py | 4 ++-- setup.py | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.bump.cfg b/.bump.cfg index 9a2e55d..a907365 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,7 +1,7 @@ date_fmt = 'YYYY-MM-DD' major = 2 -minor = 1 -patch = 8 +minor = 2 +patch = 0 date = [ 'quantiphy.py __released__', 'README.rst Released', diff --git a/README.rst b/README.rst index ea6cd29..3e2f3c3 100644 --- a/README.rst +++ b/README.rst @@ -1,8 +1,8 @@ QuantiPhy - Physical Quantities =============================== -| Version: 2.1.8 -| Released: 2017-11-07 +| Version: 2.2.0 +| Released: 2017-11-22 | .. image:: https://img.shields.io/travis/KenKundert/quantiphy/master.svg diff --git a/doc/conf.py b/doc/conf.py index 079d053..24eac75 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,7 +48,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '2.1.8' +release = '2.2.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 5bb1a61..155e824 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,8 +1,8 @@ QuantiPhy: Physical Quantities ============================== -| Version: 2.1.8 -| Released: 2017-11-07 +| Version: 2.2.0 +| Released: 2017-11-22 | Please post all bugs and suggestions at `Github `_ (or contact me directly at diff --git a/doc/releases.rst b/doc/releases.rst index 607a04b..5816415 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -60,5 +60,5 @@ Releases - added no-op conversions (units change but value stays the same: ex. $->USD) **Latest development release**: - | Version: 2.1.8 - | Released: 2017-11-07 + | Version: 2.2.0 + | Released: 2017-11-22 diff --git a/quantiphy.py b/quantiphy.py index 63e2437..cb7c176 100644 --- a/quantiphy.py +++ b/quantiphy.py @@ -421,8 +421,8 @@ def add_constant(value, alias=None, unit_systems=None): _constants[None][value.name] = value # Globals {{{1 -__version__ = '2.1.8' -__released__ = '2017-11-07' +__version__ = '2.2.0' +__released__ = '2017-11-22' # These mappings are only used when reading numbers # The key for these mappings must be a single character diff --git a/setup.py b/setup.py index 5ea0b3f..f250367 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='quantiphy', - version='2.1.8', + version='2.2.0', description='physical quantities (numbers with units)', long_description=readme, author="Ken Kundert",