Skip to content

Commit

Permalink
Merge pull request nautobot#36 from nautobot/develop
Browse files Browse the repository at this point in the history
Bump version to 0.9.6
  • Loading branch information
itdependsnetworks authored Nov 14, 2021
2 parents e9f2be3 + c7ad2c2 commit 9e2015c
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
nautobot-version: ["1.0.1"]
runs-on: "ubuntu-20.04"
env:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.9.6 - 2021-11

### Fixed

- #35 Fix bug introduced in secret support, update pinned nornir-nautobot version

### Added

- #35 Testing support for Python 3.10


## v0.9.5 - 2021-11

### Added
Expand Down
4 changes: 2 additions & 2 deletions nautobot_plugin_nornir/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Plugin declaration for nautbot_nornir_plugin."""
"""Plugin declaration for nautobot_plugin_nornir."""

__version__ = "0.9.5"
__version__ = "0.9.6"

from nautobot.extras.plugins import PluginConfig

Expand Down
2 changes: 1 addition & 1 deletion nautobot_plugin_nornir/plugins/inventory/nautobot_orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def create_host(self, device, cred, params: Dict):
"data": {
"connection_options": {
"netmiko": {"extras": {}},
"napalm": {"extras": {}},
"napalm": {"extras": {"optional_args": {}}},
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nautobot-plugin-nornir"
version = "0.9.5"
version = "0.9.6"
description = "Nautobot Nornir plugin."
authors = ["Network to Code, LLC <opensource@networktocode.com>"]

Expand All @@ -12,13 +12,23 @@ include = [

"README.md",
]
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
packages = [
{ include = "nautobot_plugin_nornir" },
]

[tool.poetry.dependencies]
python = "^3.6.2"
nornir-nautobot = "^2.0.0"
nornir-nautobot = "^2.2.0"
nautobot = ">=1.0.0"
netutils = ">=0.2.4"

Expand Down

0 comments on commit 9e2015c

Please sign in to comment.