From 40b95938d355e709c0e4c650819f1bc285ee4d94 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Tue, 19 May 2020 11:02:27 -0700 Subject: [PATCH] bump version to 2.10.3 --- .bump.cfg | 2 +- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- quantiphy.py | 4 ++-- setup.py | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.bump.cfg b/.bump.cfg index fd8aba2..4723df4 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,7 +1,7 @@ date_fmt = 'YYYY-MM-DD' major = 2 minor = 10 -patch = 2 +patch = 3 date = [ 'quantiphy.py __released__', 'README.rst Released', diff --git a/README.rst b/README.rst index 61b96bc..6c24223 100644 --- a/README.rst +++ b/README.rst @@ -18,8 +18,8 @@ QuantiPhy — Physical Quantities :target: https://pypi.python.org/pypi/quantiphy/ :Author: Ken Kundert -:Version: 2.10.2 -:Released: 2020-05-11 +:Version: 2.10.3 +:Released: 2020-05-19 What? diff --git a/doc/conf.py b/doc/conf.py index 2df14d6..4db4a69 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -57,7 +57,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '2.10.2' +release = '2.10.3' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index d43cdbb..8e67552 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -1,8 +1,8 @@ QuantiPhy: Physical Quantities ============================== -| Version: 2.10.2 -| Released: 2020-05-11 +| Version: 2.10.3 +| Released: 2020-05-19 | Please post all bugs and suggestions at `Github `_ (or contact me directly at diff --git a/doc/releases.rst b/doc/releases.rst index 8948377..3411e05 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -2,8 +2,8 @@ Releases ======== **Latest development release**: - | Version: 2.10.2 - | Released: 2020-05-11 + | Version: 2.10.3 + | Released: 2020-05-19 - Dropping support for all versions of Python older than 3.5. - Added 'sia' form. diff --git a/quantiphy.py b/quantiphy.py index 730f70a..59c7fa1 100644 --- a/quantiphy.py +++ b/quantiphy.py @@ -673,8 +673,8 @@ def add_constant(value, alias=None, unit_systems=None): # Globals {{{1 -__version__ = '2.10.2' -__released__ = '2020-05-11' +__version__ = '2.10.3' +__released__ = '2020-05-19' # 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 bc956f1..9d9fe03 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name = 'quantiphy', - version = '2.10.2', + version = '2.10.3', description = 'physical quantities (numbers with units)', long_description = readme, long_description_content_type = 'text/x-rst',