From 514094c5007cf4ae50f86d6a8899ed8b1fd8fa6f Mon Sep 17 00:00:00 2001 From: Juliette Regimbal Date: Wed, 31 Jul 2019 15:59:07 -0400 Subject: [PATCH] Update info to v4.0.0 --- README.md | 2 +- package.json | 2 +- webpack.config.js | 2 +- webpack.pages-config.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6124a12f3..4bcacacf8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Neon (develop) +Neon v4.0.0 ===== [![Build_Status](https://travis-ci.org/DDMAL/Neon.svg?branch=develop)](https://travis-ci.org/DDMAL/Neon) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) diff --git a/package.json b/package.json index 2ee2fc64f..57b0fbc71 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Neon", - "version": "develop", + "version": "4.0.0", "description": "A web-based editor for correcting MEI-Neume files", "main": "server.js", "license": "MIT", diff --git a/webpack.config.js b/webpack.config.js index 9c9c09232..0e2952c27 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -67,7 +67,7 @@ module.exports = { plugins: [ new webpack.DefinePlugin({ __LINK_LOCATION__: JSON.stringify('/'), - __NEON_VERSION__: JSON.stringify('Commit ' + commitHash) + __NEON_VERSION__: JSON.stringify('v4.0.0') }) ] }; diff --git a/webpack.pages-config.js b/webpack.pages-config.js index fe5306b28..07ef80a91 100644 --- a/webpack.pages-config.js +++ b/webpack.pages-config.js @@ -79,7 +79,7 @@ module.exports = { plugins: [ new webpack.DefinePlugin({ __LINK_LOCATION__: JSON.stringify('https://ddmal.music.mcgill.ca/Neon'), - __NEON_VERSION__: JSON.stringify('Commit ' + commitHash) + __NEON_VERSION__: JSON.stringify('v4.0.0') }) ] };