Release v2.0.9

This commit is contained in:
hyugogirubato 2024-09-25 15:35:04 +02:00
parent 0c4ca6215e
commit 00e0f1fb6e
3 changed files with 8 additions and 3 deletions

View File

@ -4,12 +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.9] - Not released
## [2.0.9] - 2024-09-25
### Added
- Added private key function.
### Changed
- Improved error handling related to file path issues during write operations.
## [2.0.8] - 2024-07-27
### Added

View File

@ -2,4 +2,4 @@ from .core import Core
from .cdm import Cdm
from .vendor import Vendor
__version__ = '2.0.8'
__version__ = '2.0.9'

View File

@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "keydive"
version = "2.0.8"
version = "2.0.9"
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>"]
@ -43,6 +43,7 @@ xmltodict = "^0.13.0"
pywidevine = "^1.8.0"
PyYAML = "^6.0.1"
Flask = "^3.0.3"
pathvalidate = "^3.2.1"
[tool.poetry.scripts]
keydive = "keydive.__main__:main"