MCPcopy Create free account
hub / github.com/apache/solr / get_stable_branch_name

Method get_stable_branch_name

dev-tools/scripts/releaseWizard.py:641–646  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

639 raise Exception("Cannot find latest version")
640
641 def get_stable_branch_name(self):
642 if self.release_type == 'major':
643 v = Version.parse(self.get_main_version())
644 else:
645 v = Version.parse(self.latest_version)
646 return "branch_%sx" % v.major
647
648 def get_lts_stable_branch_name(self):
649 return "branch_%sx" % self.latest_lts_version_major

Callers 2

get_base_branch_nameMethod · 0.95
expand_jinjaFunction · 0.80

Calls 2

get_main_versionMethod · 0.95
parseMethod · 0.45

Tested by

no test coverage detected