Releases: EmbarkStudios/spdx
Releases · EmbarkStudios/spdx
Release 0.2.3
Changed
- Updated the list of licenses to version 3.7 of the SPDX license list
Release 0.2.2
Added
- Added
LicenseId::full_namewhich is the full name for the license, eg "MIT License" for the "MIT" short identifier
Release 0.2.1
Added
- PR#9 Added a flag for determining if a license is considered copyleft. Thanks @kain88-de!
Release 0.2.0
Added
- Added a
Expressionwhich can parse and validate an SPDX license expression is
both syntactically and semantically correct, as well as evaluate the expression via
a user provided callback - Added an update exe for pulling new SDPX information, copied from https://github.com/rust-lang-nursery/license-exprs
- Added support for some of the metadata available from the SPDX format, namely "IsDeprecated", "IsFSFLibre", and "IsOSIApproved"
Changed
- Uhm...everything. I hope no one was using 0.1.0.
- Use a better lexer, mostly copied from ehuss/license-exprs#29
Release 0.1.0
Added
- Initial add of spdx crate, based primarly on
license-exprs