versionary 0.26.0 → 0.26.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.
@@ -321,6 +321,9 @@ function resolvePackageDependencies(plan, packagePath) {
321
321
  return sources
322
322
  .map((sourcePath) => plan.packages?.find((pkg) => pkg.path === sourcePath && pkg.nextVersion))
323
323
  .filter((sourcePackage) => Boolean(sourcePackage))
324
- .map((pkg) => ({ name: pkg.path, version: pkg.nextVersion }))
324
+ .map((pkg) => ({
325
+ name: pkg.path === "." ? plan.packageName : pkg.path,
326
+ version: pkg.nextVersion,
327
+ }))
325
328
  .sort((a, b) => a.name.localeCompare(b.name));
326
329
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "versionary",
3
- "version": "0.26.0",
3
+ "version": "0.26.1",
4
4
  "description": "Automatic release framework based on conventional commits and semantic versioning",
5
5
  "keywords": [
6
6
  "releasing",