Skip to content

Latest commit

 

History

History
93 lines (73 loc) · 2.98 KB

RELEASING.md

File metadata and controls

93 lines (73 loc) · 2.98 KB

Release Checklist

Prerelease (several days prior)

Prep

  • If you don't have a transifex.auth file in the root of your iD checkout, you'll need to create a Transifex account, ask @quincylvania or @bhousel for admin rights on the iD project, and then create this file with contents like
    {"user": "yourusername", "password": "*******"}
    This file is not version-controlled and will not be checked in.

Update iD

Update develop branch

$  git checkout develop
$  rm -rf node_modules/editor-layer-index/
$  npm install
$  npm run imagery
$  npm run all
$  git add . && git commit -m 'npm run imagery'
$  npm run translations
$  git add . && git commit -m 'npm run translations'
  • Update CHANGELOG.md
  • Set release version number in modules/core/context.js and package.json
$  git add . && git commit -m 'vA.B.C'
$  git push origin develop

Update and tag release branch

$  git checkout release
$  git reset --hard develop
$  npm run all
$  git add -f dist/*.css dist/*.js dist/data/* dist/img/*.svg dist/mapillary-js/ dist/pannellum-streetside/
$  git commit -m 'Check in build'
$  git tag vA.B.C
$  git push origin -f release vA.B.C

Prepare develop branch for further development

$  git checkout develop
  • Increment version number and add -dev suffix in modules/core/context.js and package.json, e.g. 2.18.5-dev
$  git add . && git commit -m 'Set development version number'
$  git push origin develop

Update openstreetmap-website

Setup remotes (first time only)

$  git remote add osmlab git@github.com:osmlab/openstreetmap-website.git
$  git remote add openstreetmap git@github.com:openstreetmap/openstreetmap-website.git

Sync master branches

$  git fetch --all
$  git checkout master
$  git reset --hard openstreetmap/master
$  git push osmlab master

Create and push branch with the new iD version

$  git checkout -b iD-A.B.C
$  bundle install
$  rm -rf vendor/assets/iD/* && vendorer
$  git add . && git commit -m 'Update to iD vA.B.C'
$  git push osmlab