From 3701fe8ea16cc80818cd2ac225428e2288952629 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Thu, 29 Aug 2019 10:16:42 +0200 Subject: [PATCH] Change order of PECL release steps in contribution docs --- CONTRIBUTING.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e4b4e60dd..33b4c7322 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -310,7 +310,7 @@ you must rebuild the extension after updating `phongo_version.h`. > `PHP_MONGODB_VERSION`, increment the last digit of > `PHP_MONGODB_VERSION_DESC`. -### Publish PECL package +### Build PECL package Create the PECL package description file with `make package.xml`. This creates a `package.xml` file from a template. Version, author, and file information will @@ -323,10 +323,6 @@ After copying release notes, use `make package` to create the package file (e.g. $ pecl install -f mongodb-X.Y.Z.tgz ``` -The PECL package may be published via the -[Release Upload](https://pecl.php.net/release-upload.php) form. You will have -one chance to confirm the package information after uploading. - ### Commit version update and release notes Commit the modified `phongo_version.h` file as "Package X.Y.Z" @@ -382,6 +378,12 @@ $ git push $ git push --tags ``` +### Release PECL package + +The PECL package may be published via the +[Release Upload](https://pecl.php.net/release-upload.php) form. You will have +one chance to confirm the package information after uploading. + ### Merge the maintenance branch up to master ```