comparison hgext/journal.py @ 29841:d5883fd055c6

extensions: change magic "shipped with hg" string I've caught multiple extensions in the wild lying about being 'internal', so it's time to move the goalposts on people. Goalpost moving will continue until third party extensions stop trying to defeat the system.
author Augie Fackler <augie@google.com>
date Tue, 23 Aug 2016 11:26:08 -0400
parents f2241c13d5a1
children 6d11ae3c4c4b
comparison
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
37 from . import share 37 from . import share
38 38
39 cmdtable = {} 39 cmdtable = {}
40 command = cmdutil.command(cmdtable) 40 command = cmdutil.command(cmdtable)
41 41
42 # Note for extension authors: ONLY specify testedwith = 'internal' for 42 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
43 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should 43 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
44 # be specifying the version(s) of Mercurial they are tested with, or 44 # be specifying the version(s) of Mercurial they are tested with, or
45 # leave the attribute unspecified. 45 # leave the attribute unspecified.
46 testedwith = 'internal' 46 testedwith = 'ships-with-hg-core'
47 47
48 # storage format version; increment when the format changes 48 # storage format version; increment when the format changes
49 storageversion = 0 49 storageversion = 0
50 50
51 # namespaces 51 # namespaces