Skip to content

Commit

Permalink
Merge pull request #150 from nautobot/release-v2.0.0b2
Browse files Browse the repository at this point in the history
Release v2.0.0b2
  • Loading branch information
jdrew82 authored Jul 14, 2023
2 parents 28b0225 + 4d4ca1a commit 28ec0af
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
1 change: 1 addition & 0 deletions docs/admin/compatibility_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ While that last supported version will not be strictly enforced--via the max_ver
| 1.1.X | 1.0.3 | 1.99.99 |
| 1.2.X | 1.0.3 | 1.99.99 |
| 1.3.X | 1.4.0 | 1.99.99 |
| 2.0.0-beta.1 | 2.0.0b2 | 2.0.0b2 |
21 changes: 21 additions & 0 deletions docs/admin/release_notes/version_2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

# v2.0 Release Notes

## v2.0.0-beta.1 - 2023-07-13

### Added

- Added pylint-nautobot to dev dependencies.

### Changed

- Updated all imports to be derived from new module locations.
- Updated all models that no longer have slugs to use replacement field.
- Updated navigation to use new NavMenu elements.
- Updated metrics to use new Jobs model attributes.
- Updated example Jobs to use new Location model instead of Region/Site along with updating IPAddress to specify parent Prefix.
- Updated example Jobs to use new Job pattern with passed variables.
- Updated Job loading to use new register_jobs function.
- Updated logging in example Jobs to use new logger on JobResult.
- Updated Infoblox integration to work with Nautobot 2.0.
- Refactored Infoblox integration to have tags applied to imported objects after sync is complete.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ nav:
- Compatibility Matrix: "admin/compatibility_matrix.md"
- Release Notes:
- "admin/release_notes/index.md"
- v2.0: "admin/release_notes/version_2.0.md"
- v1.3: "admin/release_notes/version_1.3.md"
- v1.2: "admin/release_notes/version_1.2.md"
- v1.1: "admin/release_notes/version_1.1.md"
Expand Down
12 changes: 0 additions & 12 deletions nautobot_ssot/tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@
import os
import toml

from nautobot_ssot import __version__ as project_version


class TestVersion(unittest.TestCase):
"""Test Version is the same."""

def test_version(self):
"""Verify that pyproject.toml version is same as version specified in the package."""
parent_path = os.path.dirname(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
poetry_version = toml.load(os.path.join(parent_path, "pyproject.toml"))["tool"]["poetry"]["version"]
self.assertEqual(project_version, poetry_version)


class TestDocsPackaging(unittest.TestCase):
"""Test Version in doc requirements is the same pyproject."""
Expand Down
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-ssot"
version = "2.0.0"
version = "2.0.0-beta.1"
description = "Nautobot Single Source of Truth"
authors = ["Network to Code, LLC <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 28ec0af

Please sign in to comment.