Skip to content

Commit

Permalink
Merge branch 'release/0.3.1' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
btorresgil committed Apr 12, 2016
2 parents 08ea8ed + c8b6905 commit 1af9b49
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 4 deletions.
25 changes: 25 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,34 @@
History
=======

0.3.1
-----

Released: 2016-04-12

Status: Alpha

New objects:

* policies.SecurityRule
* objects.AddressGroup

API changes:

* Changed refresh_all to refreshall and apply_all to applyall
* Added insert() method to PanObject base class

Fixes:

* Objects can now be added as children of Panorama which will make them 'shared'
* Fixes for tracebacks
* Minor fixes to documentation and docstrings

0.3.0
-----

Released: 2016-03-30

Status: Alpha

* First release on pypi
Expand All @@ -17,6 +41,7 @@ Status: Alpha
-----

Released: 2014-09-17

Status: Pre-alpha

* First release on github
3 changes: 2 additions & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ apply for all the examples on this page::
from pandevice import base
from pandevice import firewall
from pandevice import panorama
from pandevice import policies
from pandevice import objects
from pandevice import network
from pandevice import device
from pandevice import objects

Create a PanDevice
------------------
Expand Down
2 changes: 1 addition & 1 deletion pandevice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

__author__ = 'Brian Torres-Gil'
__email__ = 'btorres-gil@paloaltonetworks.com'
__version__ = '0.3.0'
__version__ = '0.3.1'


import logging
Expand Down
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[wheel]
universal = 1
universal = 1

[metadata]
description-file = README.rst
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name='pandevice',
version='0.3.0',
version='0.3.1',
description='Framework for interacting with Palo Alto Networks devices via API',
long_description='The Palo Alto Networks Device Framework is a way to interact with Palo Alto Networks devices (including Next-generation Firewalls and Panorama) using the device API that is object oriented and conceptually similar to interaction with the device via the GUI or CLI.',
author='Brian Torres-Gil',
Expand Down

0 comments on commit 1af9b49

Please sign in to comment.