The latest release is the git hash of the latest tagged version. This revision should be rolled into chromium.
(self)
| 564 | return version |
| 565 | |
| 566 | def GetLatestRelease(self): |
| 567 | """The latest release is the git hash of the latest tagged version. |
| 568 | |
| 569 | This revision should be rolled into chromium. |
| 570 | """ |
| 571 | latest_version = self.GetLatestVersion() |
| 572 | |
| 573 | # The latest release. |
| 574 | latest_hash = self.GitLog(n=1, format="%H", branch=latest_version) |
| 575 | assert latest_hash |
| 576 | return latest_hash |
| 577 | |
| 578 | def GetLatestReleaseBase(self, version=None): |
| 579 | """The latest release base is the latest revision that is covered in the |
nothing calls this directly
no test coverage detected