From 4d16ac3db72b5e5234b9f432073a8cbd6ab8556f Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Thu, 15 Sep 2022 03:27:55 -0700 Subject: [PATCH] bump version to 1.27.0 --- .bump.cfg.nt | 4 ++-- README.rst | 2 +- doc/conf.py | 2 +- doc/index.rst | 2 +- doc/releases.rst | 2 +- inform/inform.py | 2 +- pyproject.toml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bump.cfg.nt b/.bump.cfg.nt index 82c0699..c647dd2 100644 --- a/.bump.cfg.nt +++ b/.bump.cfg.nt @@ -1,6 +1,6 @@ major: 1 -minor: 26 -patch: 5 +minor: 27 +patch: 0 revision: 0 type: release files: diff --git a/README.rst b/README.rst index 0eeca99..9a0c986 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ Inform - Print & Logging Utilities :Author: Ken Kundert -:Version: 1.26.5 +:Version: 1.27.0 :Released: 2022-09-15 A package that provides specialized print functions that are used when diff --git a/doc/conf.py b/doc/conf.py index d5e1baa..0a143b2 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.26.5' +release = '1.27.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 6aa87cb..1063cf8 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -10,7 +10,7 @@ Inform: Print & Logging Utilities ================================= -| Version: 1.26.5 +| Version: 1.27.0 | Released: 2022-09-15 | Please post all bugs and suggestions at `Inform Issues `_ diff --git a/doc/releases.rst b/doc/releases.rst index 0ea0d7b..887a990 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -6,7 +6,7 @@ Releases Latest development release -------------------------- - | Version: 1.26.5 + | Version: 1.27.0 | Released: 2022-09-15 diff --git a/inform/inform.py b/inform/inform.py index 5420250..801b4ed 100644 --- a/inform/inform.py +++ b/inform/inform.py @@ -31,7 +31,7 @@ from textwrap import dedent as tw_dedent, fill # Globals {{{1 -__version__ = '1.26.5' +__version__ = '1.27.0' __released__ = '2022-09-15' INFORMER = None NOTIFIER = 'notify-send' diff --git a/pyproject.toml b/pyproject.toml index ac422fd..89616fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "inform" -version = '1.26.5' +version = '1.27.0' description = 'print & logging utilities for communicating with user' readme = "README.rst" license = {file = "LICENSE"}