diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e44ef8..fb065a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.6] - 2024-07-12 + +### Changed + +- Renamed the private key function. +- Updated the device ID function. +- Improved the deactivation message for a library. + +### Fixed + +- Prevented multiple function replacements during a single execution. + ## [2.0.5] - 2024-07-08 ### Added @@ -260,6 +272,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Initial release of the project, laying the foundation for future enhancements and features. +[2.0.6]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.6 [2.0.5]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.5 [2.0.4]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.4 [2.0.3]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.3 diff --git a/keydive/__init__.py b/keydive/__init__.py index 8afc070..7bbb811 100644 --- a/keydive/__init__.py +++ b/keydive/__init__.py @@ -2,4 +2,4 @@ from .core import Core from .cdm import Cdm from .vendor import Vendor -__version__ = '2.0.5' +__version__ = '2.0.6' diff --git a/pyproject.toml b/pyproject.toml index 618878b..1bfeb03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "keydive" -version = "2.0.5" +version = "2.0.6" description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education." license = "MIT" authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]