Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 1.0.2 #192

Merged
merged 4 commits into from
Oct 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Superblocks Lab - Change log

## [current]
## [1.0.2]

* Fix: list changes in CHANGELOG file #178
* Improvement: limit left side panel width when resizing #170
* Fix: rendering glitch in Help/General menu #182
* Fix: items alignment in Files hierarchy #187
* Improvement: reference tests covering base compile functionality #176
* Improvement: update Solidity compiler to version 0.4.25 #180
* Fix: continuous integration base environment to use Node version 8.12 #190
* Improvement: increase maximum file name length to 255 characters #183


## [1.0.1]
Expand Down
10 changes: 8 additions & 2 deletions bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@ _version_date=$(date "+%Y-%m-%d")

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

# Update files
sed -i.bak "s/\"version\"\:.*/\"version\": \"${_version_name}\"/" "$_src_manifest_file"
sed -i.bak "s/this\.\_version\=\".*/this\.\_version=\"${_version_name}\"\;/" "$_src_components_app_file"
sed -i.bak "s/.*version\: \'.*/ version\: \'${_version_name}\'\,/" "$_src_components_app_file"
sed -i.bak "s/\[current\]/\[${_version_name}\]/" "$_changelog_file"

#
# Cleanup temporary files
Expand All @@ -60,3 +62,7 @@ fi
if [ -f "$_src_components_app_file" ]; then
rm "${_src_components_app_file}.bak"
fi

if [ -f "$_changelog_file" ]; then
rm "${_changelog_file}.bak"
fi
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.0.1"
"version": "1.0.2"
}
2 changes: 1 addition & 1 deletion src/reducers/app.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const initialState = {
version: '1.0.1',
version: '1.0.2',
};

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