From 22fc3c1b48c4a3cecbd1c2760ac9de89a68278d7 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sun, 7 Jul 2024 17:44:31 +0200 Subject: [PATCH] Release v2.0.3 --- CHANGELOG.md | 11 +++++++++++ keydive/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a23d7d7..0ffb4ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ 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.3] - 2024-07-07 + +### Added + +- Added support for private key function (SDK 35 x86_64). + +### Changed + +- Removed confusing `Malformed message` warning. + ## [2.0.2] - 2024-07-07 ### Added @@ -226,6 +236,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.3]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.3 [2.0.2]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.2 [2.0.1]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.1 [2.0.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.0 diff --git a/keydive/__init__.py b/keydive/__init__.py index 3fe011d..4067199 100644 --- a/keydive/__init__.py +++ b/keydive/__init__.py @@ -2,4 +2,4 @@ from .cdm import Cdm from .vendor import Vendor -__version__ = '2.0.2' +__version__ = '2.0.3' diff --git a/pyproject.toml b/pyproject.toml index 9e469e1..7e91bed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "keydive" -version = "2.0.2" +version = "2.0.3" 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>"]