Skip to content

Commit

Permalink
Bump version: 1.5.0 → 1.5.1 (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
sserrata authored Apr 26, 2019
1 parent c807286 commit c51e4c8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
History
=======

1.5.1 (2019-04-26)
------------------

* Updated Pipfile.lock.
* Replaced recursion with loop pattern in `LoggingService` `xpoll()` method.
* Added `decode('utf-8')` to base64 decoded JWT to ensure compatibility with `json.loads()`.
* Addressed minor typos in docs.

1.5.0 (2019-02-27)
------------------

Expand Down
2 changes: 1 addition & 1 deletion pancloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""Main package for pancloud."""

__author__ = 'Palo Alto Networks'
__version__ = '1.5.0'
__version__ = '1.5.1'

from .directorysync import DirectorySyncService
from .event import EventService
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.0
current_version = 1.5.1
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name='pancloud',
version='1.5.0',
version='1.5.1',
description="Python idiomatic SDK for the Palo Alto Networks Application Framework.",
long_description=readme + '\n\n' + history,
author="Steven Serrata",
Expand Down

0 comments on commit c51e4c8

Please sign in to comment.