From d10c21039895ca67a8a53e67196905c92838914e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Junod?= Date: Mon, 5 Mar 2018 16:44:52 +0100 Subject: [PATCH] remove refs to package/package.json --- Release-Procedure.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/Release-Procedure.md b/Release-Procedure.md index f9533aa..6590389 100644 --- a/Release-Procedure.md +++ b/Release-Procedure.md @@ -22,9 +22,9 @@ Commit your changes: git add changelog git commit -m 'Changelog for v3.1.0' -### Update `package.json` and `package/package.json` +### Update `package.json` -Update the version numbers in `package.json` and `package/package.json` to reflect the target release. Create a commit for this change as well. +Update the version numbers in `package.json` to reflect the target release. Create a commit for this change as well. E.g. in `package.json` ```json @@ -34,15 +34,7 @@ E.g. in `package.json` } ``` -And in `package/package.json` -```json -{ - "name": "ol", - "version": "3.1.0" -} -``` - - git add package.json package/package.json + git add package.json git commit -m 'Update package version to 3.1.0' ### Merge the release branch