You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix 1.53 lints
This bumps the MSRV to 1.53, but this crate doesn't have a ton of
dependencies, and most of them are using 0.3.x in any case.
* Fixup changelog
* Replace difference with similar-asserts
* Add MSRV to README + CI
* Update CHANGELOG
* Remove unneeded ignore
Copy file name to clipboardexpand all lines: CHANGELOG.md
+5-3
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
<!-- next-header -->
8
8
## [Unreleased] - ReleaseDate
9
+
### Changed
10
+
-[PR#38](https://github.com/EmbarkStudios/spdx/pull/38) fixed various clippy lints which also bumps the MSRV to [1.53.0](https://blog.rust-lang.org/2021/06/17/Rust-1.53.0.html). Previously, PR#37 had bumped the MSRV to 1.52 so now this crate will check the MSRV so changes are intentional.
11
+
-[PR#38](https://github.com/EmbarkStudios/spdx/pull/38) replaced the unmaintained `difference` crate with `similar-asserts`.
12
+
9
13
## [0.4.1] - 2021-06-14
10
14
### Changed
11
15
-[PR#37](https://github.com/EmbarkStudios/spdx/pull/37) removed the dependencies on regex and lazy_static used for parsing some license expression parts, which gives a nice compile speed up with no behavior changes. Thanks [@Swagadon](https://github.com/Swagadon)!
@@ -51,9 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
51
55
- The `GFDL*` licenses are now marked as copyleft
52
56
53
57
### Fixed
54
-
- When creating a `LicenseReq` from a GNU license, the license identifier is converted into its base form,
55
-
eg. `GPL-2.0-or-later` becomes `GPL-2.0+` so that the GNU style license identifiers can be used just the same
56
-
as all of the other ones. See [this issue](https://github.com/EmbarkStudios/cargo-deny/issues/55)
58
+
- When creating a `LicenseReq` from a GNU license, the license identifier is converted into its base form, eg. `GPL-2.0-or-later` becomes `GPL-2.0+` so that the GNU style license identifiers can be used just the same as all of the other ones. See [this issue](https://github.com/EmbarkStudios/cargo-deny/issues/55)
0 commit comments