diff --git a/CHANGELOG b/CHANGELOG index 1cadcf57..f8fcddbf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,25 @@ # Superblocks Lab - Change log +## [1.7.0] + ++ Addition: TypeScript support #342 ++ Addition: Enable arrays as constructor input #185 ++ Addition: Left panel #362 ++ Addition: Add social media tags #382 +* Improvement: Pane's tab style #361 +* Improvement: Improve responsiveness to work on smaller devices #255 +* Improvement: Better UX for users with smaller device #300 +* Improvement: Better UX when Lab is embedded into iframe #300 +* Change: SEO tags #363 +* Change: Upcoming features #370 +* Change: Infura endpoints #395 +* Fix: Fix all less files import and classname typings #357 +* Fix: Access to undefined object when selecting external network without MetaMask #366 +* Fix: Fix EVM sendRawTransaction error in case of execution failure #150 +* Fix: Overflow hashes of Transaction History while decreasing size #188 +- Removal: Titles for Preferences and Help actions #359 + + ## [1.6.1] * Fix: Suppress right click on some filesystem items #353 @@ -27,8 +47,8 @@ * 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 +- Removal: Unused sass package #222 +- Removal: Initial splash screen is no more #332 ## [1.4.3] diff --git a/bump_version.sh b/bump_version.sh index ec65e7bf..c36800d8 100755 --- a/bump_version.sh +++ b/bump_version.sh @@ -44,7 +44,7 @@ _version_date=$(date "+%Y-%m-%d") # # Files to change -_src_components_app_file="./src/reducers/app.reducer.js" +_src_components_app_file="./src/reducers/app.reducer.ts" _src_manifest_file="./src/manifest.json" _changelog_file="./CHANGELOG" diff --git a/src/manifest.json b/src/manifest.json index 2e38b364..942350d3 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -5,5 +5,5 @@ "display": "standalone", "orientation": "portrait", "icons": [ ], - "version": "1.6.1" + "version": "1.7.0" } diff --git a/src/reducers/app.reducer.ts b/src/reducers/app.reducer.ts index 5fc6b23a..68b8bd27 100644 --- a/src/reducers/app.reducer.ts +++ b/src/reducers/app.reducer.ts @@ -18,7 +18,7 @@ import { AnyAction } from 'redux'; import { appActions } from '../actions'; export const initialState = { - version: '1.6.1', + version: '1.7.0', isEmbeddedMode: false };