[couchbase-server] Update script

Version dates are approximate, set version day to 1 instead of the last day of the month.
This commit is contained in:
Marc Wrobel
2025-08-15 10:42:20 +02:00
parent c2c8f2cd81
commit cc3fb54fc6
2 changed files with 30 additions and 30 deletions

View File

@@ -24,5 +24,5 @@ with ProductData(config.product) as product_data:
version = match["version"]
version = f"{version}.0" if len(version.split(".")) == 2 else version
date = dates.parse_month_year_date(match['date'])
date = dates.parse_month_year_date(match['date']).replace(day=1)
product_data.declare_version(version, date)