Changeset 289985 in webkit
- Timestamp:
- Feb 16, 2022, 5:25:59 PM (3 years ago)
- Location:
- trunk/Tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r289984 r289985 1 2022-02-16 Jonathan Bedard <jbedard@apple.com> 2 3 [git-webkit] Comment and close issue when landing PR (Follow-up fix) 4 https://bugs.webkit.org/show_bug.cgi?id=236715 5 <rdar://problem/89031529> 6 7 Unreviewed follow-up fix. 8 9 * Scripts/libraries/webkitscmpy/setup.py: Bump version instead of decrement. 10 * Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py: Ditto. 11 * Scripts/libraries/webkitscmpy/webkitscmpy/program/land.py: 12 (Land.main): Grab log of commit, which may contain revision, if there is one. 13 1 14 2022-02-15 Jonathan Bedard <jbedard@apple.com> 2 15 -
trunk/Tools/Scripts/libraries/webkitscmpy/setup.py
r289983 r289985 30 30 setup( 31 31 name='webkitscmpy', 32 version='4. 1.0',32 version='4.3.0', 33 33 description='Library designed to interact with git and svn repositories.', 34 34 long_description=readme(), -
trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/__init__.py
r289983 r289985 47 47 ) 48 48 49 version = Version(4, 1, 0)49 version = Version(4, 3, 0) 50 50 51 51 AutoInstall.register(Package('fasteners', Version(0, 15, 0))) -
trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/program/land.py
r289983 r289985 239 239 repository.checkout(target) 240 240 241 commit = repository.commit(branch=target, include_log= False)241 commit = repository.commit(branch=target, include_log=True) 242 242 if identifier_template and commit.identifier: 243 243 land_message = 'Landed {} ({})!'.format(identifier_template.format(commit).split(': ')[-1], commit.hash[:Commit.HASH_LABEL_SIZE])
Note:
See TracChangeset
for help on using the changeset viewer.