Skip to content

Commit

Permalink
bump version to 1.5.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Sep 1, 2022
1 parent 186dec1 commit 5883006
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .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
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions 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 (
Expand Down
4 changes: 2 additions & 2 deletions shlib/shlib.py
Expand Up @@ -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:
Expand Down

0 comments on commit 5883006

Please sign in to comment.