Modify version policy language to be more clear about how releases occur.

In essence, a release is supported until its 5 year anniversary, and
will receive one additional set of fixes after that. This is inline
with what we are currently doing, but should help make it more clear.
This commit is contained in:
Jonathan S. Katz
2018-09-18 16:04:29 -04:00
parent 72bb6bcbb0
commit 669b3782e6
2 changed files with 60 additions and 36 deletions

View File

@ -23,7 +23,7 @@ class Version(models.Model):
testing = models.IntegerField(null=False, blank=False, default=0, help_text="Testing level of this release. latestminor indicates beta/rc number", choices=TESTING_CHOICES)
docsloaded = models.DateTimeField(null=True, blank=True, help_text="The timestamp of the latest docs load. Used to control indexing and info on developer docs.")
firstreldate = models.DateField(null=False, blank=False, help_text="The date of the .0 release in this tree")
eoldate = models.DateField(null=False, blank=False, help_text="The planned EOL date for this tree")
eoldate = models.DateField(null=False, blank=False, help_text="The final release date for this tree")
def __unicode__(self):
return self.versionstring