zarro 1.124.4 → 1.125.0

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.
@@ -8,7 +8,7 @@
8
8
  }
9
9
  };
10
10
  // FIXME: proper types plz
11
- async function incrementPackageVersionInCsProj(xml, file) {
11
+ function incrementPackageVersionInCsProj(xml, file) {
12
12
  debug(JSON.stringify(xml, null, 2));
13
13
  const packageVersionPropGroup = xml.Project.PropertyGroup.filter((g) => !!g.PackageVersion)[0];
14
14
  if (!packageVersionPropGroup) {
@@ -63,7 +63,7 @@
63
63
  });
64
64
  return xml;
65
65
  }
66
- async function incrementPackageVersionInNuspec(xml, file) {
66
+ function incrementPackageVersionInNuspec(xml, file) {
67
67
  const meta = xml.package.metadata[0], packageName = meta.id[0], node = meta.version, current = node[0];
68
68
  const newVersion = incrementVersion(current);
69
69
  node[0] = newVersion;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.124.4",
3
+ "version": "1.125.0",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "./index.js"