Skip to content

Commit

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

:Author: Ken Kundert
:Version: 1.1.0
:Released: 2019-03-21
:Version: 1.1.1
:Released: 2019-12-13

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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='shlib',
version='1.1.0',
version='1.1.1',
description='shell library',
long_description=readme,
author="Ken Kundert",
Expand Down
4 changes: 2 additions & 2 deletions shlib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__version__ = '1.1.0'
__released__ = '2019-03-21'
__version__ = '1.1.1'
__released__ = '2019-12-13'

from .extended_pathlib import Path
from .shlib import (
Expand Down
4 changes: 2 additions & 2 deletions shlib/shlib.py
Original file line number Diff line number Diff line change
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.1.0'
__released__ = '2019-03-21'
__version__ = '1.1.1'
__released__ = '2019-12-13'

# Imports {{{1
try:
Expand Down

0 comments on commit e89ee93

Please sign in to comment.