From 687a493d26fd204cb595d33e45d41a687bd926be Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Sat, 22 Jun 2024 18:08:28 +0200 Subject: [PATCH] Release 1.1.0 --- CHANGELOG.md | 19 +++++++++++++++++++ extractor/__init__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91beed8..6015ee4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,24 @@ 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). +## [1.1.0] - 2024-06-22 + +### Added + +- Implemented a system to filter potentially crash-inducing native C function names. + +### Changed + +- Support for custom library names for new versions. + +### Fixed + +- Corrected directory structure creation for devices. + +### New Contributors + +- [azimabid00](https://github.com/azimabid00) + ## [1.0.9] - 2024-06-02 ### Added @@ -142,6 +160,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. +[1.1.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v1.1.0 [1.0.9]: https://github.com/hyugogirubato/KeyDive/releases/tag/v1.0.9 [1.0.8]: https://github.com/hyugogirubato/KeyDive/releases/tag/v1.0.8 [1.0.7]: https://github.com/hyugogirubato/KeyDive/releases/tag/v1.0.7 diff --git a/extractor/__init__.py b/extractor/__init__.py index 23d4145..0043da0 100644 --- a/extractor/__init__.py +++ b/extractor/__init__.py @@ -1,4 +1,4 @@ from .cdm import * from .vendor import * -__version__ = '1.0.9' +__version__ = '1.1.0'