Skip to content

Commit

Permalink
Bump version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
npezza93 committed May 19, 2018
1 parent 19e52cf commit 5c69e4e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
runtime = electron
target = 2.0.0
target = 2.0.1
target_arch = x64
disturl = https://atom.io/download/atom-shell
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ script:
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine \
/bin/bash -c "apt-get update && apt-get -y install libx11-dev libxkbfile-dev && yarn --link-duplicates --pure-lockfile && yarn run dist --linux --win"
/bin/bash -c "apt-get update && apt-get -y install libx11-dev libxkbfile-dev && yarn --link-duplicates --pure-lockfile --ignore-engines && yarn run dist --linux --win"
elif [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$YARN_COMMAND" == "lint" ]; then
docker run --rm \
--env-file <(env | grep -iE 'DEBUG|NODE_|ELECTRON_|YARN_|NPM_|CI|CIRCLE|TRAVIS|APPVEYOR_|CSC_|_TOKEN|_KEY|AWS_|STRIP|BUILD_') \
-v ${PWD}:/project \
-v ~/.cache/electron:/root/.cache/electron \
-v ~/.cache/electron-builder:/root/.cache/electron-builder \
electronuserland/builder:wine \
/bin/bash -c "apt-get update && apt-get -y install libx11-dev libxkbfile-dev && yarn --link-duplicates --pure-lockfile && yarn run lint"
/bin/bash -c "apt-get update && apt-get -y install libx11-dev libxkbfile-dev && yarn --link-duplicates --pure-lockfile --ignore-engines && yarn run lint"
else
yarn run dist
fi
Expand Down
7 changes: 7 additions & 0 deletions app/migrations/2.1.0.coffee
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports =
run: (config) ->
contents = config.contents

contents.version = '2.1.0'

config._writeSync(contents)
2 changes: 1 addition & 1 deletion app/version_migrator.coffee
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports =
class VersionMigrator
versions: ['1.0.5', '2.0.0']
versions: ['1.0.5', '2.0.0', '2.1.0']

constructor: (config, currentVersion) ->
@config = config
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Archipelago",
"version": "2.0.0",
"version": "2.1.0",
"description": "Archipelago is an open-source terminal emulator built on web technology",
"main": "app/main/init.js",
"scripts": {
Expand Down

0 comments on commit 5c69e4e

Please sign in to comment.