diff --git a/HISTORY.rst b/HISTORY.rst index 11b9de2..3e0d424 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,14 @@ History ======= +1.0.3 (2018-04-26) +------------------ + +* Overhauled and updated RTDs +* Updated `__init__.py` to allow package-level imports +* Fixed issue where starrifying authorization token in `__repr__` overrode value in request header. + + 1.0.2 (2018-03-20) ------------------ diff --git a/pancloud/__init__.py b/pancloud/__init__.py index 4174a10..ad37daa 100644 --- a/pancloud/__init__.py +++ b/pancloud/__init__.py @@ -10,4 +10,4 @@ from .logging import LoggingService __author__ = 'Palo Alto Networks' -__version__ = '1.0.2' +__version__ = '1.0.3' diff --git a/pancloud/credentials.py b/pancloud/credentials.py deleted file mode 100644 index e69de29..0000000 diff --git a/setup.cfg b/setup.cfg index 30f31e4..4c3c262 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = True tag = True diff --git a/setup.py b/setup.py index 6b811e9..65eba74 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setup( name='pancloud', - version='1.0.2', + version='1.0.3', description="Python idiomatic SDK for the Palo Alto Networks Application Framework.", long_description=readme + '\n\n' + history, author="Steven Serrata",