From 8e2c5b918ac376390f08a9235e7da5dc479a336a Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 24 Oct 2019 14:54:25 -0400 Subject: [PATCH] Change instructions for branch `2.15` -> `2.x` --- RELEASING.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index 73b61e12a..eefc6fec0 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -13,9 +13,9 @@ on the iD project, and then create this file with contents like
 
 ### Update `iD`
 
-#### Update `2.15` branch
+#### Update `2.x` branch
 ```bash
-$  git checkout 2.15
+$  git checkout 2.x
 $  rm -rf node_modules/editor-layer-index/
 $  npm install
 $  npm run imagery
@@ -30,13 +30,13 @@ $  git add . && git commit -m 'npm run translations'
 
 ```bash
 $  git add . && git commit -m 'vA.B.C'
-$  git push origin 2.15
+$  git push origin 2.x
 ```
 
 #### Update and tag `release` branch
 ```bash
 $  git checkout release
-$  git reset --hard 2.15
+$  git reset --hard 2.x
 $  npm run all
 $  git add -f dist/*.css dist/*.js dist/img/*.svg dist/mapillary-js/ dist/pannellum-streetside/
 $  git commit -m 'Check in build'