From d35aa0f1f570515d70d50325f232c11753892060 Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Sun, 28 Jun 2020 13:11:08 +0200 Subject: Automatically update the README. This is related to: https://github.com/ArthurSonzogni/nlohmann_json_cmake_fetchcontent/pull/1 --- update.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/update.py b/update.py index 443d900..e80a1e2 100755 --- a/update.py +++ b/update.py @@ -53,6 +53,12 @@ for tag, url, body in release_url_map[::-1]: subprocess.call(['git', 'add', './include/nlohmann/json.hpp']) if has_json_fwd: subprocess.call(['git', 'add', './include/nlohmann/json_fwd.hpp']) + + # Update the README.md: + subprocess.call([ 'sed', '-i', '-e', 's/GIT_TAG .*)/GIT_TAG '+ tag + ')/g', './README.md']) + subprocess.call(['git', 'add', './README.md']) + + # Commit: subprocess.call(['git', 'commit', '-m', 'Upstream release ' + tag]) subprocess.call(['git', 'tag', '-a', tag, '-m', body]) -- cgit v1.2.3