Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the licensing of the
reactlog
package, transitioning from GPL-3 to an MIT license. The changes simplify the licensing terms and remove detailed third-party license information, replacing it with a concise MIT license file.Licensing Changes:
License
field in theDESCRIPTION
file to reflect the switch fromGPL-3
toMIT + file LICENSE
.LICENSE
file, which contained detailed references to third-party licenses, and replaced it with a simplified copyright notice.LICENSE.md
file containing the full text of the MIT license.Why bumped the version to 2.0?
Migrating the license from GPL-3 to MIT is a significant change. While it doesn't necessarily break the code's API (meaning existing code using the library might still function without modification), it fundamentally changes the legal terms under which the software is distributed and can be used. GPL-3 is a strong copyleft license, while MIT is a permissive license. This change has major implications for downstream users, especially regarding how they can combine
reactlog
with other code.