From 66536f40453a029c5165a3398e2c93b379034e89 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Tue, 18 May 2021 21:22:19 -0700 Subject: [PATCH] bump version to 1.24.0 --- .bump.cfg | 4 ++-- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- inform/__init__.py | 4 ++-- setup.py | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.bump.cfg b/.bump.cfg index f504f4b..6bf072d 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,7 +1,7 @@ date_fmt = 'YYYY-MM-DD' major = 1 -minor = 23 -patch = 3 +minor = 24 +patch = 0 date = [ 'inform/__init__.py __released__', 'README.rst Released', diff --git a/README.rst b/README.rst index 9592281..087b128 100644 --- a/README.rst +++ b/README.rst @@ -15,8 +15,8 @@ Inform - Print & Logging Utilities :Author: Ken Kundert -:Version: 1.23.3 -:Released: 2021-05-17 +:Version: 1.24.0 +:Released: 2021-05-18 A light-weight package with few dependencies that provides specialized print functions that are used when communicating with the user. It allows you to diff --git a/doc/conf.py b/doc/conf.py index a635605..0ee7a48 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -55,7 +55,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '1.23.3' +release = '1.24.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 4049ed6..2166756 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -8,8 +8,8 @@ Inform: Print & Logging Utilities ================================= -| Version: 1.23.3 -| Released: 2021-05-17 +| Version: 1.24.0 +| Released: 2021-05-18 | Please post all bugs and suggestions at `Inform Issues `_ (or contact me directly at diff --git a/doc/releases.rst b/doc/releases.rst index 91f7ceb..a4aaa00 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -2,8 +2,8 @@ Releases ======== **Latest development release**: - | Version: 1.23.3 - | Released: 2021-05-17 + | Version: 1.24.0 + | Released: 2021-05-18 **1.24 (2021-05-18)**: - Defer evaluation of *stdout* and *stderr*. diff --git a/inform/__init__.py b/inform/__init__.py index ad448e0..9741851 100644 --- a/inform/__init__.py +++ b/inform/__init__.py @@ -1,5 +1,5 @@ -__version__ = '1.23.3' -__released__ = '2021-05-17' +__version__ = '1.24.0' +__released__ = '2021-05-18' from .inform import ( # inform utility functions and classes diff --git a/setup.py b/setup.py index baf96d9..597e82f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( name = 'inform', - version = '1.23.3', + version = '1.24.0', description = 'print & logging utilities for communicating with user', long_description = readme, long_description_content_type = 'text/x-rst',