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

[Simsala] automatic release created for v1.0.0 #2605

Closed
wants to merge 17 commits into from
Closed
43 changes: 22 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ jobs:
executor: node
steps:
- checkout
- run: tasks/pending-changed-check.sh
- run: yarn add simsala
- run: node node_modules/simsala/src/cli.js check --pending-path ./changes

lint:
executor: node
Expand Down Expand Up @@ -229,8 +230,25 @@ jobs:
executor: node
steps:
- checkout
- yarn-install
- run: node tasks/createReleasePR.js
- run: |
yarn add simsala
git config user.email "bot@lunie.io"
git config user.name "Lunie Bot"
REPO_ID=99653950
node node_modules/simsala/src/cli.js release-candidate --pending-path ./changes --owner luniehq --repository lunie --token ${GIT_BOT_TOKEN} --message "#Release Candidate\n\nPlease manually test before merging this to master <a href='https://${CIRCLE_BUILD_NUM}-${REPO_ID}-gh.circle-artifacts.com/0/tmp/voyager/dist/index.html'>here</a>"

# Push merges to master immediatly back to develop to stay in sync
mergeBack:
executor: node
steps:
- checkout
- run:
command: |
git remote add bot https://${GIT_BOT_TOKEN}@github.com/luniehq/lunie.git
git checkout develop
git pull
git merge origin/master
git push

# Publish the release to GitHub.
publish:
Expand All @@ -251,19 +269,6 @@ jobs:
git push --delete bot release-candidate

node tasks/publish.js
fi
# Push merges to master immediatly back to develop to stay in sync
mergeBack:
executor: node
steps:
- checkout
- run:
command: |
git remote add bot https://${GIT_BOT_TOKEN}@github.com/luniehq/lunie.git
git checkout develop
git pull
git merge origin/master
git push


workflows:
Expand Down Expand Up @@ -347,11 +352,7 @@ workflows:
- release
releaseManually:
jobs:
- release:
filters:
branches:
only:
- release
- release
mergeBack:
jobs:
- mergeBack:
Expand Down
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,30 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
<!-- SIMSALA --> <!-- DON'T DELETE, used for automatic changelog updates -->

## [1.0.0] - 2019-05-17

### Added

- [#1735](https://github.com/cosmos/lunie/issues/1735) implement multi step action modals @migueog
- [#2589](https://github.com/cosmos/lunie/pull/2589) Set number of nodes run on local testnet via environment variable @colw

### Changed

- [#2579](https://github.com/cosmos/lunie/issues/2579) Move remaining Github specific files to .github folder @colw

### Fixed

- [#2378](https://github.com/cosmos/lunie/issues/2378) Do not show withdrawal button when user has no rewards avilable @colw
- [#2538](https://github.com/cosmos/lunie/issues/2538) Added sign out menu item to AppMenu.vue @migueog
- [#2592](https://github.com/cosmos/lunie/issues/2592) Add a &nbsp; to LiBankTransaction so that there is a space between From and the address @migueog

### Deprecated

- [#2580](https://github.com/cosmos/lunie/issues/2580) Remove docs folder @colw
- [#2582](https://github.com/cosmos/lunie/issues/2582) Remove unused theme JSON files @colw
- [#2597](https://github.com/cosmos/lunie/pull/2597) Remvoe onboarding code and realted assets @colw

## [1.0.0-beta.68] - 2019-05-15

Expand Down
1 change: 0 additions & 1 deletion changes/colw_2378-disable-withdrawl-on-zero-delegations

This file was deleted.

1 change: 0 additions & 1 deletion changes/colw_2579-organise-github-files

This file was deleted.

1 change: 0 additions & 1 deletion changes/colw_2580-remove-docs-folder

This file was deleted.

1 change: 0 additions & 1 deletion changes/colw_2582-remove-unused-themes

This file was deleted.

1 change: 0 additions & 1 deletion changes/colw_remove-onboarding-code-assets

This file was deleted.

1 change: 0 additions & 1 deletion changes/miguel_1735-implement-multi-step-action-modals

This file was deleted.

1 change: 0 additions & 1 deletion changes/miguel_2538-cant-sign-out-of-mobile

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion changes/testnet-set-num-nodes

This file was deleted.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lunie",
"productName": "lunie",
"version": "1.0.0-beta.68",
"version": "1.0.0",
"description": "Lunie is the user interface for the Cosmos Hub.",
"author": "Lunie International Software Systems Inc. <hello@lunie.io>",
"license": "Apache-2.0",
Expand All @@ -28,13 +28,13 @@
"test:e2e": "nightwatch --config ./test/e2e/nightwatch.conf.js",
"test:exe": "node tasks/test-build.js",
"test:coverage": "live-server test/unit/coverage/lcov-report",
"release": "git checkout develop & git pull & git push origin develop:release",
"watch": "tasks/watch.sh",
"testnet": "docker-compose -f ./tasks/local-testnet/docker-compose.yml up",
"proxy": "node ./tasks/local-testnet/proxy.js",
"certificates": "docker-compose -f tasks/certificates/docker-compose.yml up",
"frontend": "cross-env NODE_ENV=development FAUCET='http://localhost:8080' webpack-dev-server --hot --colors --config webpack.renderer.config.js --port 9080 --content-base app/dist --https --mode=development --cert 'certs/dev.crt' --key 'certs/dev.key'",
"changelog": "node tasks/changelog.js"
"changelog": "simsala log --pending-path ./changes",
"release": "git checkout develop & git pull & git push origin develop:release"
},
"devDependencies": {
"@babel/core": "7.4.4",
Expand Down Expand Up @@ -89,6 +89,7 @@
"postcss-preset-env": "6.6.0",
"prettier": "1.17.0",
"publish-release": "1.6.0",
"simsala": "0.0.11",
"style-loader": "0.23.1",
"stylelint": "9.10.1",
"stylelint-config-standard": "18.2.0",
Expand Down
113 changes: 0 additions & 113 deletions tasks/changelog.js

This file was deleted.

Loading