Release v2.0.4
This commit is contained in:
parent
4359a93c8f
commit
6d8c7300ca
|
@ -4,6 +4,12 @@ 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).
|
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.4] - 2024-07-07
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Vendor now in list to maintain the order of items (python `set` issue).
|
||||||
|
|
||||||
## [2.0.3] - 2024-07-07
|
## [2.0.3] - 2024-07-07
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -236,6 +242,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.
|
- Initial release of the project, laying the foundation for future enhancements and features.
|
||||||
|
|
||||||
|
[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
|
[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.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.1]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.1
|
||||||
|
|
|
@ -2,4 +2,4 @@ from .core import Core
|
||||||
from .cdm import Cdm
|
from .cdm import Cdm
|
||||||
from .vendor import Vendor
|
from .vendor import Vendor
|
||||||
|
|
||||||
__version__ = '2.0.3'
|
__version__ = '2.0.4'
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "keydive"
|
name = "keydive"
|
||||||
version = "2.0.3"
|
version = "2.0.4"
|
||||||
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
|
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
|
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
|
||||||
|
|
Loading…
Reference in New Issue