Skip to content

Commit

Permalink
Update Version
Browse files Browse the repository at this point in the history
  • Loading branch information
toxophilist committed May 18, 2020
1 parent 6a2c08b commit 9cb66c4
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release Notes

## Version 0.5.1
**Release Date**: 18th May 2020
### Features
1. Consolidate vangrant and docker files below container directory.
2. Remove requirement to run bash scripts to build docker container
3. Document pure docker commands.

### Bug Fixes


## Version 0.5.0
**Release Date**: 13th May 2020
### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# OCI Designer Toolkit [0.5.0](CHANGELOG.md#version-0.5.0)
# OCI Designer Toolkit [0.5.1](CHANGELOG.md#version-0.5.1)

OCI designer toolKIT (OKIT) is a set of tools for enabling design, deploy and visualise OCI environments
through a graphical web based interface.
Expand Down
2 changes: 1 addition & 1 deletion containers/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
FROM oraclelinux:7-slim
LABEL "provider"="Oracle" \
"issues"="https://github.com/oracle/oci-designer-toolkit/issues" \
"version"="0.5.0" \
"version"="0.5.1" \
"description"="OKIT Web Server Container." \
"copyright"="Copyright (c) 2020, Oracle and/or its affiliates."
SHELL ["/bin/bash", "-c"]
Expand Down
4 changes: 2 additions & 2 deletions documentation/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ and the associated Release tag is in the format vX.Y.Z hence for the version 0.5
**v0.5.0**. The command shows how this can be cloned to the local machine.

```bash
git clone -b v0.5.0 --depth 1 git@github.com:oracle/oci-designer-toolkit.git
git clone -b v0.5.1 --depth 1 git@github.com:oracle/oci-designer-toolkit.git
```

or

```bash
git clone -b v0.5.0 --depth 1 https://github.com/oracle/oci-designer-toolkit.git
git clone -b v0.5.1 --depth 1 https://github.com/oracle/oci-designer-toolkit.git
```


Expand Down
4 changes: 2 additions & 2 deletions okitweb/static/okit/js/okit_console.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*/
console.info('Loaded Console Javascript');

const okitVersion = '0.5.0';
const okitReleaseDate = '13th May 2020';
const okitVersion = '0.5.1';
const okitReleaseDate = '18th May 2020';

function hideNavMenu() {
$(jqId('navigation_menu')).removeClass('okit-navigation-menu-show');
Expand Down
4 changes: 2 additions & 2 deletions okitweb/static/okit/json/release.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"release": "0.5.0",
"tag": "Release-0.5.0"
"release": "0.5.1",
"tag": "v0.5.1"
}

0 comments on commit 9cb66c4

Please sign in to comment.