diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f8221..10ad984 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ 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.8] - 2024-07-27 + +### Added + +- Added compatibility with WSA (Windows Subsystem for Android). + +### Changed + +- Display location of `liboemcrypto.so` if detected (instead of the base address of the library). +- Simplified text for disabling the library. + +### New Contributors + +- [sn-o-w](https://github.com/sn-o-w) + ## [2.0.7] - 2024-07-23 ### Changed @@ -291,6 +306,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.8]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.8 [2.0.7]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.7 [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 diff --git a/README.md b/README.md index d03bb39..8cd7a17 100644 --- a/README.md +++ b/README.md @@ -110,6 +110,7 @@ KeyDive is intended for educational and research purposes only. The use of this azimabid00 JohnDoe1964 Nineteen93 +sn-o-w ## Licensing diff --git a/keydive/__init__.py b/keydive/__init__.py index bac576f..9a08a6e 100644 --- a/keydive/__init__.py +++ b/keydive/__init__.py @@ -2,4 +2,4 @@ from .cdm import Cdm from .vendor import Vendor -__version__ = '2.0.7' +__version__ = '2.0.8' diff --git a/pyproject.toml b/pyproject.toml index fdf5ad9..0e3cea2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "keydive" -version = "2.0.7" +version = "2.0.8" 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>"] @@ -36,7 +36,7 @@ include = [ [tool.poetry.dependencies] python = "^3.8" coloredlogs = "^15.0.1" -frida = "^16.4.2" +frida = "^16.4.7" pathlib = "^1.0.1" pycryptodomex = "^3.20.0" xmltodict = "^0.13.0"