This document details steps for publishing packages and tag the code base accordingly:
remix-lib , remix-simulator , remix-solidity
- publish (using lerna) all the modules that depends on one of the newly published module:
- checkout a new branch from master
- npm run publish (that command use lerna)
- commit
- increment the root (repository scoped) package.json
- increment root package.json version
- commit
- merge the branch
- create a tag (using the package.json version)
- checkout latest origin/master
- npm run tag
- github-changes -o ethereum -r remix -a --only-pulls --use-commit-body --only-merges --between-tags previous_version...next_version
- create a new release out of the changelog.md
- in changelog put list of published packages with version
remix-debug , remix-tests , remix-url-resolver , remix-analyzer
- publish the module:
- checkout a new branch from master
- cd in the module folder
- increment package.json version
- npm run publish
- create a tag (using the package.json version)
- checkout latest origin/master
- git tag @
- git push --tags
- github-changes -o ethereum -r remix -a --only-pulls --use-commit-body --only-merges --between-tags previous_version...next_version
- keep only PRs related to changes in the published module
- create a new release out of the changelog.md