diff --git a/docs/admin/compatibility_matrix.md b/docs/admin/compatibility_matrix.md index 626cdc6d..0b615e24 100644 --- a/docs/admin/compatibility_matrix.md +++ b/docs/admin/compatibility_matrix.md @@ -5,3 +5,4 @@ | 1.0.1 | 1.0.0 | 1.1.99 | | 1.1.2 | 1.2.0 | 1.99 | | 1.2.0 | 1.4.0 | 1.99 | +| 2.0.0 | 2.0.0 | 2.99 | diff --git a/docs/admin/release_notes/version_2.0.md b/docs/admin/release_notes/version_2.0.md new file mode 100644 index 00000000..7a2c0235 --- /dev/null +++ b/docs/admin/release_notes/version_2.0.md @@ -0,0 +1,15 @@ +# v2.0 Release Notes + +## Release Overview + +## v2.0.1 (2023-10-11) + +### Fixed + +* Missing migration + +## v2.0.0 (2023-09-29) + +### Changed + +* Nautobot v2.0 support diff --git a/mkdocs.yml b/mkdocs.yml index 848701bf..5e43b136 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -107,6 +107,8 @@ nav: - Compatibility Matrix: "admin/compatibility_matrix.md" - Release Notes: - "admin/release_notes/index.md" + - v2.0: "admin/release_notes/version_2.0.md" + - v1.2: "admin/release_notes/version_1.2.md" - v1.1: "admin/release_notes/version_1.1.md" - v1.0: "admin/release_notes/version_1.0.md" - Developer Guide: diff --git a/nautobot_device_onboarding/migrations/0007_alter_onboardingtask_ip_address.py b/nautobot_device_onboarding/migrations/0007_alter_onboardingtask_ip_address.py new file mode 100644 index 00000000..12dd595f --- /dev/null +++ b/nautobot_device_onboarding/migrations/0007_alter_onboardingtask_ip_address.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.21 on 2023-10-11 19:46 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("nautobot_device_onboarding", "0006_update_model_fields_part_3"), + ] + + operations = [ + migrations.AlterField( + model_name="onboardingtask", + name="ip_address", + field=models.CharField(default="", max_length=255), + preserve_default=False, + ), + ] diff --git a/pyproject.toml b/pyproject.toml index d3dbcabd..c8508598 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot-device-onboarding" -version = "2.0.0" +version = "2.0.1" description = "A plugin for Nautobot to easily onboard new devices." authors = ["Network to Code, LLC "] license = "Apache-2.0" diff --git a/tasks.py b/tasks.py index 31b2cd72..8b79237a 100644 --- a/tasks.py +++ b/tasks.py @@ -28,7 +28,7 @@ def is_truthy(arg): "nautobot_device_onboarding": { "nautobot_ver": "2.0.0", "project_name": "nautobot_device_onboarding", - "python_ver": "3.10", + "python_ver": "3.11", "local": False, "compose_dir": os.path.join(os.path.dirname(__file__), "development"), "compose_files": [