You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Each micro release EOLs the previous one in the same series.ifself.status=="f"andself.micro>0andself.is_active:
(
type(self)
.objects.filter(
major=self.major, minor=self.minor, micro=self.micro-1, status="f"
)
.update(eol_date=self.date)
)
This sets the previous final release as eol.
We should add handling for the following:
The final feature release will make the previous release candidate eol
Any further iterations of the release candidate sets the previous iteration as eol
The release candidate sets the beta as eol and the beta sets the alpha as eol
Currently
Release.save()
has the following:This sets the previous final release as eol.
We should add handling for the following:
Some untested messy logic below for an idea:
The text was updated successfully, but these errors were encountered: