Skip to content

Commit

Permalink
Merge pull request #310 from SuperblocksHQ/release/1.4.0
Browse files Browse the repository at this point in the history
Fix bump_version helper script and bump version to 1.4.0
  • Loading branch information
javier-tarazaga authored Dec 22, 2018
2 parents f913853 + af57369 commit 3ded6a2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Superblocks Lab - Change log

## [1.4.0]

+ Addition: Anonymous amplitude tracking #305
* Improvement: Minor UI updates #290
* Change: List of upcoming features #309
* Fix: Local storage quota full when performing compiler operations #283
* Fix: Compiler's replyMessage gets called multiple times #279
* Fix: Postinstall script error on Windows #301


## [1.3.0]

+ Addition: Integrate OpenZeppelin smart contracts #253
Expand Down
2 changes: 1 addition & 1 deletion bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ _version_date=$(date "+%Y-%m-%d")

#
# Files to change
_src_components_app_file="./src/reducers/app.js"
_src_components_app_file="./src/reducers/app.reducer.js"
_src_manifest_file="./src/manifest.json"
_changelog_file="./CHANGELOG"

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"display": "standalone",
"orientation": "portrait",
"icons": [ ],
"version": "1.3.0"
"version": "1.4.0"
}
2 changes: 1 addition & 1 deletion src/reducers/app.reducer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const initialState = {
version: '1.3.0',
version: '1.4.0',
};

export default function appReducer(state = initialState, action) {
Expand Down

0 comments on commit 3ded6a2

Please sign in to comment.