diff --git a/.cookiecutter.json b/.cookiecutter.json index 2b49cf1..1a399a8 100644 --- a/.cookiecutter.json +++ b/.cookiecutter.json @@ -2,10 +2,10 @@ "author": "Hewlett Packard Enterprise Development LP", "email": "hpe-networking@lists.hp.com", "repo_url": "https://github.com/HPENetworking/topology_docker", - "doc_url": "http://topology-docker.rtfd.org/", - "project_name": "Docker Platform Engine for Topology", + "doc_url": "https://topology-docker.readthedocs.io/", + "project_name": "Topology Docker", "repo_name": "topology_docker", - "short_description": "Docker based Platform Engine plugin for the Network Topology Framework.", - "year": "2015-2016", - "version": "1.6.0" + "short_description": "Docker based Platform Engine for the Topology Framework.", + "year": "2015-2020", + "version": "1.8.0" } diff --git a/README.rst b/README.rst index 3c6042a..f3eb767 100644 --- a/README.rst +++ b/README.rst @@ -1,19 +1,35 @@ -=================================== -Docker Platform Engine for Topology -=================================== +=============== +Topology Docker +=============== -Docker based Platform Engine plugin for the Topology Modular Framework. +Topology Docker its a plugin (called a Platform Engine) for the Topology +Framework that allows to build a topology using Docker containers. Documentation ============= - http://topology-docker.rtfd.org/ + https://topology-docker.readthedocs.io/ Changelog ========= +1.8.0 +----- + +**Changes** + +- Allow platform to receive options, so it is compatible with the new Topology + 1.10.0 "options" feature. [David Diaz] + + +1.7.0 +----- + +- Release changelog lost in time. + + 1.6.0 ----- diff --git a/lib/topology_docker/__init__.py b/lib/topology_docker/__init__.py index b984f2e..fb2cca9 100644 --- a/lib/topology_docker/__init__.py +++ b/lib/topology_docker/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2015-2018 Hewlett Packard Enterprise Development LP +# Copyright (C) 2015-2020 Hewlett Packard Enterprise Development LP # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -19,9 +19,6 @@ topology_docker module entry point. """ -from __future__ import unicode_literals, absolute_import -from __future__ import print_function, division - __author__ = 'Hewlett Packard Enterprise Development LP' __email__ = 'hpe-networking@lists.hp.com' -__version__ = '1.7.0' +__version__ = '1.8.0'