diff --git a/docs/release-notes/version-2.8.md b/docs/release-notes/version-2.8.md index f2f3218d3..c1392e99d 100644 --- a/docs/release-notes/version-2.8.md +++ b/docs/release-notes/version-2.8.md @@ -1,6 +1,6 @@ # NetBox v2.8 -## v2.8.0 (FUTURE) +## v2.8.0 (2020-04-13) ### New Features (Beta) @@ -45,7 +45,7 @@ For NetBox plugins to be recognized, they must be installed and added by name to ### API Changes * The `_choices` API endpoints have been removed. Instead, use an `OPTIONS` request to a model's endpoint to view the available values for all fields. ([#3416](https://github.com/netbox-community/netbox/issues/3416)) -* The `id__in` filter has been removed. Use the format `?id=1&id=2` instead. ([#4313](https://github.com/netbox-community/netbox/issues/4313)) +* The `id__in` filter has been removed from all models ([#4313](https://github.com/netbox-community/netbox/issues/4313)). Use the format `?id=1&id=2` instead. * dcim.Manufacturer: Added a `description` field * dcim.Platform: Added a `description` field * dcim.Rack: The `/api/dcim/racks//units/` endpoint has been replaced with `/api/dcim/racks//elevation/`. @@ -60,4 +60,4 @@ For NetBox plugins to be recognized, they must be installed and added by name to ### Other Changes -* [#4081](https://github.com/netbox-community/netbox/issues/4081) - The `family` field has been removed from the Aggregate, Prefix, and IPAddress models +* [#4081](https://github.com/netbox-community/netbox/issues/4081) - The `family` field has been removed from the Aggregate, Prefix, and IPAddress models. The field remains available in the API representations of these models, however the column has been removed from the database table. diff --git a/netbox/netbox/settings.py b/netbox/netbox/settings.py index 87e584b69..2921a67dc 100644 --- a/netbox/netbox/settings.py +++ b/netbox/netbox/settings.py @@ -16,7 +16,7 @@ from django.core.validators import URLValidator # Environment setup # -VERSION = '2.8.0-dev' +VERSION = '2.8.0' # Hostname HOSTNAME = platform.node()