pmcf 1.65.0 → 1.65.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/dns.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.65.0",
3
+ "version": "1.65.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/dns.mjs CHANGED
@@ -187,7 +187,7 @@ async function generateNamedDefs(dns, targetDir) {
187
187
  records: new Set([
188
188
  SOARecord,
189
189
  NSRecord,
190
- createRecord(fullName(`version.${domain}`), "TXT", '"1"')
190
+ createRecord(fullName(`version.catalog.${domain}`), "TXT", '"1"')
191
191
  ])
192
192
  };
193
193