From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id 48B2A384B110; Fri, 11 Jun 2021 08:14:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 48B2A384B110 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-1379] gcc-changelog: Ignore one more commit. X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 2f5ab546e2be8e42b00416b2e5860d04a881beab X-Git-Newrev: e01874cdae4bfdb1d5c5e25c54f14225c5895af3 Message-Id: <20210611081424.48B2A384B110@sourceware.org> Date: Fri, 11 Jun 2021 08:14:24 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jun 2021 08:14:24 -0000 https://gcc.gnu.org/g:e01874cdae4bfdb1d5c5e25c54f14225c5895af3 commit r12-1379-ge01874cdae4bfdb1d5c5e25c54f14225c5895af3 Author: Martin Liska Date: Fri Jun 11 10:13:54 2021 +0200 gcc-changelog: Ignore one more commit. contrib/ChangeLog: * gcc-changelog/git_update_version.py: Ignore commit that violates rules and was somehow pushed. Diff: --- contrib/gcc-changelog/git_update_version.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index 0508f194084..b97ca58800f 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -27,7 +27,9 @@ from git_repository import parse_git_revisions current_timestamp = datetime.datetime.now().strftime('%Y%m%d\n') # Skip the following commits, they cannot be correctly processed -IGNORED_COMMITS = ('c2be82058fb40f3ae891c68d185ff53e07f14f45') +IGNORED_COMMITS = ( + 'c2be82058fb40f3ae891c68d185ff53e07f14f45', + '04a040d907a83af54e0a98bdba5bfabc0ef4f700') def read_timestamp(path):