Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge v.0.6.2 into master #119

Merged
merged 2 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# 0.6.2 - 2024-04

### Fixed
- #118 Remove cryptography pinned dependency.


# 0.6.1 - 2024-04

### Added
- #108 Added Support for sdwan interfaces
- #105 Include interface description for get_interfaces method


### Fixed
- #115 Update package dependencies, fix tests


# 0.6.0 - 2022-02

### Added
Expand All @@ -20,6 +26,7 @@
- #101 Handles unable to convert to int for edge case with interfaces
- #103 Fix Empty List of Interfaces


## 0.5.4 - 2022-02

### Fixed
Expand Down
4 changes: 3 additions & 1 deletion napalm_panos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@

"""napalm_panos package."""

from importlib import metadata

# Import local modules
from napalm_panos.panos import PANOSDriver

__version__ = "0.6.1"
__version__ = metadata.version(__name__)

__all__ = ("PANOSDriver",)
Loading
Loading