We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we always build major.minor version and then put the third digit into the revision:
DEB_VERSION ?= $(VERSION_MAJOR).$(VERSION_MINOR)-$(VERSION_BUILD)
https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-version
The version number of a package. The format is: [epoch:]upstream_version[-debian_revision].
This means that we have now built 0.34 twice, once for v0.34.0 and once for v0.34.1:
v0.34.0
v0.34.1
https://github.com/kubernetes/minikube/releases/download/v0.34.0/minikube_0.34-0.deb
https://github.com/kubernetes/minikube/releases/download/v0.34.1/minikube_0.34-1.deb
We should change this to match our tags/releases (0.34.0, 0.34.1), and drop revision (or 0):
The absence of a debian_revision is equivalent to a debian_revision of 0.
Since we don't build anything but just re-package, we don't need a revision.
The text was updated successfully, but these errors were encountered:
2acf369
No branches or pull requests
Currently we always build major.minor version and then put the third digit into the revision:
https://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-version
This means that we have now built 0.34 twice, once for
v0.34.0
and once forv0.34.1
:https://github.com/kubernetes/minikube/releases/download/v0.34.0/minikube_0.34-0.deb
https://github.com/kubernetes/minikube/releases/download/v0.34.1/minikube_0.34-1.deb
We should change this to match our tags/releases (0.34.0, 0.34.1), and drop revision (or 0):
Since we don't build anything but just re-package, we don't need a revision.
The text was updated successfully, but these errors were encountered: