Skip to content

Commit

Permalink
Merge pull request #30 from jvanderaa/versioning_updates
Browse files Browse the repository at this point in the history
Versioning updates
  • Loading branch information
josh-silvas authored Nov 6, 2021
2 parents 40145cb + f51ef0a commit 3153f19
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 53 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@ A plugin for [Nautobot](https://github.com/nautobot/nautobot) to manage device l

## Installation

### Pre-Publicly Available Installation

For notes how to [install the plugin from a Git Repository](docs/images/install_from_repo.md).

After completing the install of the plugin from Git repository continue to the next [install step](#installation-continued).
### Public Installation
### Installation

The plugin is available as a Python package in pypi and can be installed with pip

Expand Down
2 changes: 1 addition & 1 deletion docs/add_information.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Adding Data to Device Life Cycle Plugin

To add data into the Device Life Cycle Plugin, you need to either add it manually throught the UI, or through the REST API endpoint. In this current version there is no synchronization of data from a vendor API endpoint, but this may be a feature request in the future.
To add data into the Device Life Cycle Plugin, you need to either add it manually throughout the UI, or through the REST API endpoint. In this current version there is no synchronization of data from a vendor API endpoint, but this may be a feature request in the future.

## Plugin API Definition

Expand Down
42 changes: 0 additions & 42 deletions docs/images/install_from_repo.md

This file was deleted.

12 changes: 9 additions & 3 deletions nautobot_device_lifecycle_mgmt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
"""Plugin declaration for the Device LifeCycle Management."""
try:
from importlib import metadata
except ImportError:
# Python version < 3.8
import importlib_metadata as metadata

__version__ = "0.1.0-beta.0"
__version__ = metadata.version(__name__)

from django.db.models.signals import post_migrate

Expand All @@ -13,9 +18,10 @@ class DeviceLifeCycleConfig(PluginConfig):
name = "nautobot_device_lifecycle_mgmt"
verbose_name = "Nautobot Device Lifecycle Management"
version = __version__
author = "Mikhail Yohman"
author = "Network to Code"
author_email = "[email protected]"
description = "Manages device lifecycle of Nautobot Devices and Components."
base_url = "device-lifecycle"
base_url = "nautobot-device-lifecycle-mgmt"
required_settings = []
min_version = "1.0.0"
max_version = "1.9999"
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-device-lifecycle-mgmt"
version = "0.2.1"
version = "0.2.2"
description = "Manages device lifecycles for platforms and software."
authors = [
"Josh Silvas <[email protected]>",
Expand Down

0 comments on commit 3153f19

Please sign in to comment.