Skip to content

Commit

Permalink
Merge pull request #119 from napalm-automation-community/develop
Browse files Browse the repository at this point in the history
Merge v.0.6.2 into master
  • Loading branch information
itdependsnetworks authored May 1, 2024
2 parents 298ba2c + 545d9bd commit bcaaf19
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 147 deletions.
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

0 comments on commit bcaaf19

Please sign in to comment.