From 1fd9afe419e2b0feb3311e6d84be2c73195eecd0 Mon Sep 17 00:00:00 2001 From: elinuxhenrik Date: Tue, 8 Dec 2020 13:31:20 +0100 Subject: [PATCH] Update Release Notes Change-Id: I0f897b98fb4f8adc0bc703e187d9b9bac73bf190 Issue-ID: NONRTRIC-352 Signed-off-by: elinuxhenrik --- .gitignore | 2 ++ docs/developer-guide.rst | 4 ++-- docs/release-notes.rst | 22 ++++++++++++++++++++++ tox.ini | 13 ++----------- 4 files changed, 28 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 37ae7b6..7db901f 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ package-lock.json /node /node_modules +### Eclipse ### +/.pydevproject /.classpath /.project /.settings diff --git a/docs/developer-guide.rst b/docs/developer-guide.rst index 1716666..eacc3d0 100644 --- a/docs/developer-guide.rst +++ b/docs/developer-guide.rst @@ -32,7 +32,7 @@ To run the Control Panel locally for development with simulated services, follow - Now you can open URL: `localhost:8080`_ in a browser to access the backend directly. -.. _localhost:8080: localhost:8080 +.. _localhost:8080: http://localhost:8080 Start the frontend: @@ -42,7 +42,7 @@ Start the frontend: - Now you can open URL: `localhost:4200`_ in a browser to access the Control Panel. -.. _localhost:4200: localhost:4200 +.. _localhost:4200: http://localhost:4200 From the main page, click on the "Policy Control" card. From here, it is possible to create or list instances for each existing policy type. diff --git a/docs/release-notes.rst b/docs/release-notes.rst index 3a49a42..7e1c490 100644 --- a/docs/release-notes.rst +++ b/docs/release-notes.rst @@ -27,6 +27,9 @@ Version history | 2020-06-12 | 2.0.0 | Henrik Andersson | Bronze Release | | | | | | +------------+----------+------------------+----------------+ +| 2020-12-03 | 2.1.0 | Henrik Andersson | Cherry Release | +| | | | | ++------------+----------+------------------+----------------+ Release Data ============ @@ -50,4 +53,23 @@ Bronze | | | +-----------------------------+----------------------------------------------------------------+ +Cherry +------ ++-----------------------------+----------------------------------------------------------------+ +| **Project** | Non-RT RIC Control Panel | +| | | ++-----------------------------+----------------------------------------------------------------+ +| **Repo/commit-ID** | nonrtric-controlpanel/9d99a37374c9266f3d11ff0a19c2d068571159ba | +| | | ++-----------------------------+----------------------------------------------------------------+ +| **Release designation** | Cherry | +| | | ++-----------------------------+----------------------------------------------------------------+ +| **Release date** | 2020-12-03 | +| | | ++-----------------------------+----------------------------------------------------------------+ +| **Purpose of the delivery** | Introducing Enrichment Controller Service | +| | | ++-----------------------------+----------------------------------------------------------------+ + Fully supported in Firefox and Chrome. Minor issues in Safari. Not supported in Microsoft Edge and IE. diff --git a/tox.ini b/tox.ini index 4491722..9374684 100644 --- a/tox.ini +++ b/tox.ini @@ -24,12 +24,7 @@ skipsdist = true [testenv:docs] basepython = python3 -deps = - sphinx - sphinx-rtd-theme - sphinxcontrib-httpdomain - recommonmark - lfdocs-conf +deps = -r{toxinidir}/docs/requirements-docs.txt commands = sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html @@ -38,9 +33,5 @@ whitelist_externals = echo [testenv:docs-linkcheck] basepython = python3 -deps = sphinx - sphinx-rtd-theme - sphinxcontrib-httpdomain - recommonmark - lfdocs-conf +deps = -r{toxinidir}/docs/requirements-docs.txt commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck -- 2.16.6