From 2fcf4e486add9286b7d8129943a7746e87d3ff85 Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sat, 5 Jul 2025 18:18:16 +0200 Subject: [PATCH] release v3.0.4 --- 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 6cfe08b..4f9ffd7 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). +## [3.0.4] - 2025-07-05 + +### Added + +- New private function reference. + +### Fixed + +- Detecting system Id for devices that do not have the `oem_crypto_build_information` field. + ## [3.0.3] - 2025-06-21 ### Added @@ -542,6 +552,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. +[3.0.4]: https://github.com/hyugogirubato/KeyDive/releases/tag/v3.0.4 [3.0.3]: https://github.com/hyugogirubato/KeyDive/releases/tag/v3.0.3 [3.0.2]: https://github.com/hyugogirubato/KeyDive/releases/tag/v3.0.2 [3.0.1]: https://github.com/hyugogirubato/KeyDive/releases/tag/v3.0.1 diff --git a/keydive/__init__.py b/keydive/__init__.py index 8c02e2b..fd032a6 100644 --- a/keydive/__init__.py +++ b/keydive/__init__.py @@ -4,4 +4,4 @@ from .adb.vendor import Vendor from .drm.cdm import Cdm from .drm.keybox import KeyBox -__version__ = '3.0.3' +__version__ = '3.0.4' diff --git a/pyproject.toml b/pyproject.toml index 8092fb9..202b249 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "keydive" -version = "3.0.3" +version = "3.0.4" 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>"]