diff options
author | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-12 14:27:29 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2020-10-13 09:35:20 +0000 |
commit | c30a6232df03e1efbd9f3b226777b07e087a1122 (patch) | |
tree | e992f45784689f373bcc38d1b79a239ebe17ee23 /chromium/third_party/sqlite/README.md | |
parent | 7b5b123ac58f58ffde0f4f6e488bcd09aa4decd3 (diff) | |
download | qtwebengine-chromium-85-based.tar.gz |
BASELINE: Update Chromium to 85.0.4183.14085-based
Change-Id: Iaa42f4680837c57725b1344f108c0196741f6057
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/sqlite/README.md')
-rw-r--r-- | chromium/third_party/sqlite/README.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chromium/third_party/sqlite/README.md b/chromium/third_party/sqlite/README.md index 89d5c629bdf..310050bcdb3 100644 --- a/chromium/third_party/sqlite/README.md +++ b/chromium/third_party/sqlite/README.md @@ -25,14 +25,14 @@ tools and is not distributed. # Upgrade to a new SQLite release. **Note** SQLite tags all releases `version-<release number>`, e.g. -`version-3.31.1`. The Chromium project prefixes all tags/branches with -"chromium-", e.g. `chromium-version-3.31.1`. +`version-3.32.1`. The Chromium project prefixes all tags/branches with +"chromium-", e.g. `chromium-version-3.32.1`. 1. Create new release branch Use the SQLite commit ID when creating a branch. For example "562fd18b9dc27216191c0a6477bba9b175f7f0d2" corresponds to the - 3.31.1 release. The commit is used, instead of the tag name, because + 3.32.1 release. The commit is used, instead of the tag name, because we do not mirror the SQLite tags along with the commits. The correct commit ID can be found at [sqlite/releases](https://github.com/sqlite/sqlite/releases). @@ -45,7 +45,7 @@ tools and is not distributed. ```sh cd //third_party/sqlite/src git fetch origin - export VERSION=3.31.1 + export VERSION=3.32.1 git checkout -b chromium-version-$VERSION \ --track origin/chromum-version-$VERSION ``` @@ -90,7 +90,7 @@ following: 1. Checkout the current release branch. ```sh - export VERSION=3.31.1 + export VERSION=3.32.1 cd //third_party/sqlite/src git checkout -b chromium-version-$VERSION \ --track origin/chromium-version-$VERSION |