Skip to content

Commit

Permalink
bump version to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed May 24, 2021
1 parent 46a48fb commit bcdb652
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bump.cfg
@@ -1,7 +1,7 @@
date_fmt = 'YYYY-MM-DD'
major = 1
minor = 2
patch = 1
patch = 2
date = [
'shlib/shlib.py __released__',
'shlib/__init__.py __released__',
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -14,8 +14,8 @@ ShLib - Shell Library
:target: https://pypi.python.org/pypi/shlib/

:Author: Ken Kundert
:Version: 1.2.1
:Released: 2020-02-22
:Version: 1.2.2
:Released: 2021-05-24

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.2.1",
version = "1.2.2",
description = "shell library",
long_description = readme,
author = "Ken Kundert",
Expand Down
4 changes: 2 additions & 2 deletions shlib/__init__.py
@@ -1,5 +1,5 @@
__version__ = '1.2.1'
__released__ = '2020-02-22'
__version__ = '1.2.2'
__released__ = '2021-05-24'

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.2.1"
__released__ = "2020-02-22"
__version__ = "1.2.2"
__released__ = "2021-05-24"

# Imports {{{1
try:
Expand Down

0 comments on commit bcdb652

Please sign in to comment.