Skip to content

Commit

Permalink
chore(release): 1.7.1
Browse files Browse the repository at this point in the history
### [1.7.1](v1.7.0...v1.7.1) (2022-04-07)

### Bug Fixes

* **panos.base.PanDevice._set_version_and_version_info:** Fixes AttributeError when version is not known ([#440](#440)) ([ce17bd5](ce17bd5)), closes [#439](#439)
  • Loading branch information
semantic-release-bot committed Apr 7, 2022
1 parent ecc1f53 commit 256349c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion panos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

__author__ = "Palo Alto Networks"
__email__ = "devrel@paloaltonetworks.com"
__version__ = "1.7.0"
__version__ = "1.7.1"


import logging
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pan-os-python"
version = "1.7.0"
version = "1.7.1"
description = "Framework for interacting with Palo Alto Networks devices via API"
authors = ["Palo Alto Networks <devrel@paloaltonetworks.com>"]
license = "ISC"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
setup(
long_description=readme,
name="pan-os-python",
version="1.7.0",
version="1.7.1",
description="Framework for interacting with Palo Alto Networks devices via API",
python_requires="!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4.0,>=2.7",
project_urls={
Expand All @@ -49,7 +49,7 @@
packages=["examples", "panos"],
package_dir={"": "."},
package_data={"examples": ["*.md"]},
install_requires=["pan-python==0.*,>=0.16.0"],
install_requires=["pan-python==0.*,>=0.17.0"],
extras_require={
"dev": [
"bandit==1.*,>=1.6.2",
Expand Down

0 comments on commit 256349c

Please sign in to comment.