From 58830061d3375ffd6dc2e603a1c33719b683d4ef Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Wed, 31 Aug 2022 23:42:33 -0700 Subject: [PATCH] bump version to 1.5.0-beta.0 --- .bump.cfg.nt | 4 ++-- README.rst | 4 ++-- setup.py | 2 +- shlib/__init__.py | 4 ++-- shlib/shlib.py | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.bump.cfg.nt b/.bump.cfg.nt index 519a210..ca9fa13 100644 --- a/.bump.cfg.nt +++ b/.bump.cfg.nt @@ -1,8 +1,8 @@ major: 1 -minor: 4 +minor: 5 patch: 0 revision: 0 -type: release +type: beta files: setup.py: version: version diff --git a/README.rst b/README.rst index fec0d5d..5f2249f 100644 --- a/README.rst +++ b/README.rst @@ -18,8 +18,8 @@ ShLib — Shell Library :target: https://pypi.python.org/pypi/shlib/ :Author: Ken Kundert -:Version: 1.4.0 -:Released: 2021-11-10 +:Version: 1.5.0-beta.0 +:Released: 2022-08-31 A light-weight package with few dependencies that allows users to do shell-script like things relatively easily in Python. Is a natural complement to diff --git a/setup.py b/setup.py index d3a5e83..ec57bfc 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = "shlib", - version = "1.4.0", + version = "1.5.0-beta.0", description = "shell library", long_description = readme, long_description_content_type = 'text/x-rst', diff --git a/shlib/__init__.py b/shlib/__init__.py index f84759a..16e2e0f 100644 --- a/shlib/__init__.py +++ b/shlib/__init__.py @@ -1,5 +1,5 @@ -__version__ = '1.4.0' -__released__ = '2021-11-10' +__version__ = '1.5.0-beta.0' +__released__ = '2022-08-31' from .extended_pathlib import Path from .shlib import ( diff --git a/shlib/shlib.py b/shlib/shlib.py index 70a9278..e41cda1 100644 --- a/shlib/shlib.py +++ b/shlib/shlib.py @@ -19,8 +19,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see [http://www.gnu.org/licenses/]. -__version__ = "1.4.0" -__released__ = "2021-11-10" +__version__ = "1.5.0-beta.0" +__released__ = "2022-08-31" # Imports {{{1 try: