diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e9950d4c..e8ebcac2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Release Notes +## Version 0.10.2 +**Release Date**: 27th August 2020 +### Bug Fixes +1. Resolve issue where deleting an artefact would cause an addition OKE cluster to be created if one exists on the canvas. In addition deleteing OKE caused it to be removed from the model but not the view. + + ## Version 0.10.1 **Release Date**: 27th August 2020 ### Bug Fixes diff --git a/README.md b/README.md index 336db2cc2..f5fe8b111 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# OCI Designer Toolkit [0.10.1](CHANGELOG.md#version-0.10.1) +# OCI Designer Toolkit [0.10.2](CHANGELOG.md#version-0.10.2) OCI designer toolKIT (OKIT) is a set of tools for enabling design, deploy and visualise OCI environments through a graphical web based interface. diff --git a/documentation/Installation.md b/documentation/Installation.md index 18893a037..714ff8b60 100644 --- a/documentation/Installation.md +++ b/documentation/Installation.md @@ -22,22 +22,22 @@ python modules are installed and in addition provide a simple flask server that ## Clone Repository Before the building either the Docker or Vagrant Images the project will nee to be cloned from the Git Repository (or downloaded) and it is recommended that the latest Stable Release be cloned. The latest stable version number if shown in the README -and the associated Release tag is in the format vX.Y.Z hence for the version 0.10.1 the Release tag will be -**v0.10.1**. The command shows how this can be cloned to the local machine. +and the associated Release tag is in the format vX.Y.Z hence for the version 0.10.2 the Release tag will be +**v0.10.2**. The command shows how this can be cloned to the local machine. ```bash -git clone -b v0.10.1 --depth 1 git@github.com:oracle/oci-designer-toolkit.git +git clone -b v0.10.2 --depth 1 git@github.com:oracle/oci-designer-toolkit.git ``` or ```bash -git clone -b v0.10.1 --depth 1 https://github.com/oracle/oci-designer-toolkit.git +git clone -b v0.10.2 --depth 1 https://github.com/oracle/oci-designer-toolkit.git ``` ### Download If you do not have git installed locally the current release of OKIT can be retrieved by downloading it as a zip file from -https://github.com/oracle/oci-designer-toolkit/archive/v0.10.1.zip +https://github.com/oracle/oci-designer-toolkit/archive/v0.10.2.zip ## OCI Config File diff --git a/okitweb/static/okit/js/okit_console.js b/okitweb/static/okit/js/okit_console.js index 9ca4d9d25..7d963805a 100644 --- a/okitweb/static/okit/js/okit_console.js +++ b/okitweb/static/okit/js/okit_console.js @@ -4,7 +4,7 @@ */ console.info('Loaded Console Javascript'); -const okitVersion = '0.10.1'; +const okitVersion = '0.10.2'; const okitReleaseDate = '27th August 2020'; // Validation const validate_error_colour = "#ff4d4d"; diff --git a/okitweb/static/okit/json/release.json b/okitweb/static/okit/json/release.json index ed619cb62..ce76532a4 100644 --- a/okitweb/static/okit/json/release.json +++ b/okitweb/static/okit/json/release.json @@ -1,4 +1,4 @@ { - "release": "0.10.1", - "tag": "v0.10.1" + "release": "0.10.2", + "tag": "v0.10.2" } \ No newline at end of file