-
Notifications
You must be signed in to change notification settings - Fork 41
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
Release v3.0.4 #268
Release v3.0.4 #268
Conversation
bump version to 3.0.3
Typo fix in dev commands
Upgrading click
Update Nautobot tests
* Use diffsync store methods
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One question. @chadell
network_importer/version.py
Outdated
@@ -1,3 +1,3 @@ | |||
"""Version number for network_importer.""" | |||
__version_info__ = (3, 0, "2") | |||
__version_info__ = (3, 0, "3") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be (3, 0, "4")
instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gonna do a change here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
>>> import network_importer
>>> network_importer.__version__
'3.0.4'
check 6d7ac5d
@@ -126,6 +126,9 @@ jobs: | |||
integration_nautobot: | |||
name: "Integration Test - Nautobot" | |||
runs-on: "ubuntu-20.04" | |||
strategy: | |||
matrix: | |||
nautobot-version: ["1.0.3", "1.1.6", "1.2.12", "1.3.1"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason for using 1.3.1 instead of say 1.3.5?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this was the latest version available when the commit was created
No description provided.