From d5b5de8a4099c3fb5d4ad356ce9f82f8ce4c85f5 Mon Sep 17 00:00:00 2001 From: Bruno Bowden Date: Tue, 27 Oct 2020 10:39:38 -0700 Subject: [PATCH] v0.14.0 - Content Review for WHO (#1678) - Interim content review and close to final client - Removed prepare-release.md as it was out of date --- client/pubspec.yaml | 2 +- docs/release/prepare-release.md | 30 ------------------------------ 2 files changed, 1 insertion(+), 31 deletions(-) delete mode 100644 docs/release/prepare-release.md diff --git a/client/pubspec.yaml b/client/pubspec.yaml index b1a303539c..3430f76aed 100644 --- a/client/pubspec.yaml +++ b/client/pubspec.yaml @@ -8,7 +8,7 @@ publish_to: none # next expected version, and the `-git` suffix is a # pre-release indicator. # https://dart.dev/tools/pub/pubspec#version -version: 0.13.0+24-git +version: 0.14.0+25-git repository: https://github.com/WorldHealthOrganization/app diff --git a/docs/release/prepare-release.md b/docs/release/prepare-release.md deleted file mode 100644 index 0e1bd297cc..0000000000 --- a/docs/release/prepare-release.md +++ /dev/null @@ -1,30 +0,0 @@ -# Preparing a new release - -_Note these instructions are only for creating a release version of the app that can be used by WHO, not for the entire release lifecycle. For the latter, see [here](../README.md)._ - -## Add the WHO private repo - -The WHO private repo has production configuration and private assets that are not in this repository. Clone this repository and fetch its branches: - -``` -git remote add release https://github.com/WorldHealthOrganization/app-private-who.git -git fetch release -``` - -## Create a new release branch - -Create a release branch; it should be named `release/vX.X.X` where `X.X.X` is the app version. Merge in the release branch from the previous version, so that the produciton configuration and private assets are added, and finally push this branch to the private repository. - -``` -git checkout -b release/v0.11.0 -git merge release/v0.10.0 -git push release release/v0.11.0 -``` - -## Create a tag and release - -Go to the "Releases" section of the app-private-who GitHub repository. Create a new tag with the release name (such as `v0.11.0`), and add a description of what has been changed. - -## Next steps - -Steps for building the app on the WHO's end are found in [manual-build.md](manual-build.md).