diff --git a/Dockerfile b/Dockerfile index 1a6f1a57b..f105c2ae8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,4 +38,4 @@ RUN chown -R nginx:nginx /usr/share/nginx/html/ USER nginx EXPOSE 5005 HEALTHCHECK cmd curl --fail http://localhost:5005 || exit 1 -LABEL version="2.1.0" +LABEL version="2.1.1" diff --git a/package.json b/package.json index ca1ff0c8d..09d93596b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "neodash", - "version": "2.1.0", + "version": "2.1.1", "description": "NeoDash - Neo4j Dashboard Builder", "neo4jDesktop": { "apiVersion": "^1.2.0" diff --git a/src/modal/AboutModal.tsx b/src/modal/AboutModal.tsx index 5e7d9d19a..9eaab7102 100644 --- a/src/modal/AboutModal.tsx +++ b/src/modal/AboutModal.tsx @@ -13,7 +13,7 @@ import BugReportIcon from '@material-ui/icons/BugReport'; export const NeoAboutModal = ({ open, handleClose, getDebugState }) => { const app = "NeoDash - Neo4j Dashboard Builder"; const email = "niels.dejong@neo4j.com"; - const version = "2.1.0"; + const version = "2.1.1"; const downloadDebugFile = () => { const element = document.createElement("a");