Skip to content

Commit

Permalink
Update Version Number
Browse files Browse the repository at this point in the history
  • Loading branch information
toxophilist committed Jul 15, 2021
1 parent b4a25fd commit 0baba07
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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.24.3" \
"version"="0.24.4" \
"description"="OKIT Web Server Container." \
"copyright"="Copyright (c) 2020, 2021, Oracle and/or its affiliates."
SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Oracle Cloud Infrastructure Designer and Visualisation Toolkit [0.24.3](CHANGELOG.md#version-0.24.3)
# Oracle Cloud Infrastructure Designer and Visualisation Toolkit [0.24.4](CHANGELOG.md#version-0.24.4)

OCI designer and visualisation toolKIT (OKIT) is a browser based tool that allows the user to [design](https://www.ateam-oracle.com/introduction-to-okit-the-oci-designer-toolkit),
[deploy](https://www.ateam-oracle.com/introduction-to-okit-the-oci-designer-toolkit) and visualise ([introspect/query](https://www.ateam-oracle.com/the-oci-designer-toolkit-query-feature))
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.24.3" \
"version"="0.24.4" \
"description"="OKIT Web Server Container." \
"copyright"="Copyright (c) 2020, 2021, Oracle and/or its affiliates."
SHELL ["/bin/bash", "-c"]
Expand Down
2 changes: 1 addition & 1 deletion okitweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "okitweb",
"version": "0.24.3",
"version": "0.24.4",
"description": "OKIT Web application",
"scripts": {},
"author": "Oracle",
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.24.3';
const okitReleaseDate = '13th July 2021';
const okitVersion = '0.24.4';
const okitReleaseDate = '15th July 2021';
// Validation
const validate_error_colour = "#ff4d4d";
const validate_warning_colour = "#ffd633";
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.24.3",
"tag": "v0.24.3"
"release": "0.24.4",
"tag": "v0.24.4"
}
2 changes: 1 addition & 1 deletion visualiser/facades/ociConnection.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

class OCIConnection(object):
PAGINATION_LIMIT = 1000
OKIT_VERSION = 'v0.24.3'
OKIT_VERSION = 'v0.24.4'

def __init__(self, config=None, configfile=None, profile=None, region=None):
self.tenancy_ocid = ''
Expand Down
2 changes: 1 addition & 1 deletion visualiser/generators/okitGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def initialiseJinja2Variables(self):
# -- Add Standard Author / Copyright variables
self.jinja2_variables["author"] = __author__
self.jinja2_variables["copyright"] = __copyright__
self.jinja2_variables["okit_version"] = "0.24.3"
self.jinja2_variables["okit_version"] = "0.24.4"

def get(self, artifact_type, id):
artifact = {};
Expand Down

0 comments on commit 0baba07

Please sign in to comment.