From b7f34c46bc128d4564ff13edcd9ff1b2ccde878d Mon Sep 17 00:00:00 2001 From: Matthew Jackson <1085847+MattJackson@users.noreply.github.com> Date: Fri, 10 Jul 2026 12:31:19 -0700 Subject: [PATCH] 1.3.1: relicense to MIT Relicensed from AGPL-3.0 to MIT, effective 1.3.1 (<=1.3.0 remain AGPL). Version sync to 1.3.1. --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 4 ++-- LICENSE | 21 +++++++++++++++++++++ README.md | 2 +- 4 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd6e7c..b63f326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.3.1] — 2026-07-10 + +### Licensing + +- **Relicensed to the MIT License, from 1.3.1 onwards** (releases up to and + including 1.3.0 remain under AGPL-3.0). + +Version sync with the workspace; inherits libfreemkv 1.3.1. + ## [1.3.0] — 2026-07-08 ### Changed diff --git a/Cargo.toml b/Cargo.toml index 7f3d7fa..89c2057 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "freemkv-unlock" -version = "1.3.0" +version = "1.3.1" edition = "2024" rust-version = "1.86" -license = "AGPL-3.0-only" +license = "MIT" description = "Unlock layer for the freemkv toolchain: the Unlocker contract + self-contained firmware/AACS/CSS unlocker modules. libfreemkv depends on this and dispatches via all_unlockers()." repository = "https://github.com/freemkv/freemkv-unlock" # NEVER crates.io: this crate carries drive firmware. Consumed only by git tag. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9062b07 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Matthew Jackson & Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 8c0ca74..a7746e7 100644 --- a/README.md +++ b/README.md @@ -24,4 +24,4 @@ for u in freemkv_unlock::all_unlockers() { To remove an unlocker, delete its module directory and its one line in `all_unlockers()` — nothing else changes. -License: AGPL-3.0-only. +License: MIT.