Stop auto-updating release dates (#518)

Often the actual release date does not exactly match with the first version date of for a given release.
Moreover the release date is simple to set : this is a one-time update that is not subject to change.
This commit is contained in:
Marc Wrobel
2025-09-14 13:54:23 +02:00
committed by GitHub
parent f058325c21
commit d82426182c
2 changed files with 19 additions and 32 deletions

View File

@@ -64,7 +64,7 @@ class ProductFrontmatter:
if self.path.is_file():
with self.path.open() as f:
self.data = frontmatter.load(f)
logging.info(f"loaded product data for {self.name} from {self.path}")
logging.debug(f"loaded product data for {self.name} from {self.path}")
else:
logging.warning(f"no product data found for {self.name} at {self.path}")