So after updating my Swift Package and its version tag,
I am getting the following errors when I try to update the package in my project that consumes the package.
Missing package product 'MyPackage1'
❕Package resolution errors must be fixed before building
https://github.com/ElevatedUnderdogs/PackageTest2.git
has no Package.swift manifest for version 1.0.1
1.0.0
is the original. 1.0.1
is my updated version.
Does this mean I need to create a new Package.swift for every single version? I don't even see a place in the Package.swift
where I can signify the current version.
Things I've tried:
- reseting the package cache in the consuming project.
- "updating to latest package versions"
- Deleting the Swift Package, and then trying to add it again. Before adding it completes, I get: "MyProject.git has no
Package.swift
manifest for version1.0.1
. - Package.swift is in the root directory.