ref(releases): add classification helpers: _names, _version, _filenames

This commit is contained in:
AJ ONeal
2023-11-13 13:17:05 -07:00
parent e9485d85ad
commit dc1ab03aeb
23 changed files with 48 additions and 3 deletions

View File

@@ -75,6 +75,7 @@ module.exports = async function () {
download: '',
},
].map(function (rel) {
rel._version = `${rel.version}-1`;
rel.download =
'https://get.enterprisedb.com/postgresql/' +
rel.name +
@@ -82,6 +83,7 @@ module.exports = async function () {
return rel;
}),
download: '',
_names: ['PostgreSQL', 'postgresql', 'Postgres', 'postgres', 'binaries'],
};
};