From f33b315cad7699790584c682703ca9fdce188621 Mon Sep 17 00:00:00 2001 From: Maicon Diniz Filippsen Date: Mon, 14 Jan 2019 22:18:50 +0100 Subject: [PATCH] Bump version to 1.5.0 (#346) --- CHANGELOG | 17 +++++++++++++++++ src/manifest.json | 2 +- src/reducers/app.reducer.js | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 420006a3..7f422d3b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,22 @@ # Superblocks Lab - Change log +## [1.5.0] + ++ Addition: New copy to clipboard button in account selector #314 ++ Addition: New project sharing through unique URL using IPFS #252 +* Improvement: New Preview panel replacing Show Preview app window #311 +* Change: Use yarn instead of make for building #330 +* Fix: Unable to run yarn start #292 +* Fix: Account Edit failure due to EVM not being ready #325 +* Fix: Missing Origin Validation vulnerability in webpack-dev-server #329 +* Fix: Left panel editor window not resizing #333 +* Fix: Dropdown buttons won't toggle on click #61 +* Fix: Unable to run newly rebuilt EVM due to uncaught type error #343 +* Fix: getTransactionCount return value to comply with the specification #341 +* Removal: Unused sass package #222 +* Removal: Initial splash screen is no more #332 + + ## [1.4.3] * Change: ORIGIN variable in the make file #323 diff --git a/src/manifest.json b/src/manifest.json index 4b458513..08ed82ef 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -5,5 +5,5 @@ "display": "standalone", "orientation": "portrait", "icons": [ ], - "version": "1.4.3" + "version": "1.5.0" } diff --git a/src/reducers/app.reducer.js b/src/reducers/app.reducer.js index 66e17d81..783a3100 100644 --- a/src/reducers/app.reducer.js +++ b/src/reducers/app.reducer.js @@ -15,7 +15,7 @@ // along with Superblocks Lab. If not, see . export const initialState = { - version: '1.4.3', + version: '1.5.0', }; export default function appReducer(state = initialState, action) {