-
-
Notifications
You must be signed in to change notification settings - Fork 413
New issue
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
bumped cabal-version field #1498
Conversation
Should we change it in the sub projects cabal file, such as servant-swagger.cabal for instance? |
I think we should |
ccbfb85
to
5c914e9
Compare
I've done the requested change. Failures dont seem linked to PR ? |
It seems that some other Cabal files have been forgotten (non-exhaustive list) :
|
Are still missing... |
also need to be updated... |
Cabal supports two types of licenses, native and SPDX, which can be seen here hackage.haskell.org/package/Cabal-3.6.2.0/docs/Distribution-Types-PackageDescription.html#v:licenseRaw Several packages use BSD-3-Clause as a license, in conjonction with cabal-version: >=1.10 which cabal parses as Right (UnknownLicense "BSD-3"). If I change teh cabal-version to cabal-version: 2.2 , cabal correctly identifdies the license License (ELicense (ELicenseId BSD_3_Clause)).
aka BSD3 -> BSD-3-Clause: next cabal may deprecate the old format
7bd4fe8
to
d284832
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Fix #1497