From c61fef40971f6ac7bc8bdeafe087553913ab4a12 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 3 May 2023 15:01:49 -0700 Subject: [PATCH] v0.1.2 --- MANIFEST.in | 1 + setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index b3b0a4a..8e0187d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,5 +6,6 @@ recursive-include tests * recursive-exclude * __pycache__ recursive-exclude * *.py[co] recursive-include netbox_napalm_plugin/templates * +recursive-include netbox_napalm_plugin/static * recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif diff --git a/setup.cfg b/setup.cfg index dbf797f..7dfd2f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ python = 3.8: py38, format, lint, build [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 commit = True tag = True diff --git a/setup.py b/setup.py index c5d77ac..922dd1b 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,6 @@ packages=find_packages(include=['netbox_napalm_plugin', 'netbox_napalm_plugin.*']), test_suite='tests', url='https://github.com/netbox-community/netbox-napalm', - version='0.1.1', + version='0.1.2', zip_safe=False, )