Skip to content

Commit

Permalink
resolve issue with missing migrations (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitej6 authored Oct 11, 2023
1 parent 7198dc2 commit 417396d
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
15 changes: 15 additions & 0 deletions docs/admin/release_notes/version_2.0.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -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,
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down

0 comments on commit 417396d

Please sign in to comment.