diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1c005d..85ce187 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,9 +52,6 @@ jobs: steps: - uses: actions/checkout@v4 - - run: | - choco install llvm -y --version=17.0.6 - - run: | Get-ChildItem src/ -Filter *.cpp -Recurse | ForEach-Object { clang-format --dry-run -Werror $_.FullName; if ($LASTEXITCODE -ne 0) { exit 1; } } Get-ChildItem src/ -Filter *.h -Recurse | ForEach-Object { clang-format --dry-run -Werror $_.FullName; if ($LASTEXITCODE -ne 0) { exit 1; } } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c1c253..395329c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,78 @@ 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). +## [Unreleased] + +## [1.6.3] - 2024-06-17 + +### Changed + +- Specify the versions of dependencies. + +## [1.6.2] - 2024-04-06 + +### Fixed + +- Fix 126 error. + +## [1.6.1] - 2024-05-31 + +### Fixed + +- Fixed abi compatibility. + +## [1.6.0] - 2024-05-30 + +### Changed + +- Better dependency diagnostics. + +## [1.5.2] - 2024-05-17 + +### Added + +- Added help message when load fails. + ## [1.5.1] - 2024-02-06 +### Changed + +- Refactor preload plugin loading in PreLoader.cpp +- Refactor plugin loading and error handling + ### Fixed -- Failing to load. +- Fix loadPreloadNativePlugins crash and replace sv2u8sv to u8 str + +## [1.5.0] - 2024-02-05 + +### Changed + +- Preload native plugins +- Clean up code -[1.5.1]: https://github.com/LiteLDev/PreLoader/releases/tag/v1.5.1 +[Unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.3...HEAD +[1.6.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.2...v1.6.3 +[1.6.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.1...v1.6.2 +[1.6.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.0...v1.6.1 +[1.6.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.5.2...v1.6.0 +[1.5.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.5.1...v1.5.2 +[1.5.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.5.0...v1.5.1 +[1.5.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.3...v1.5.0 +[1.4.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.2...v1.4.3 +[1.4.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.1...v1.4.2 +[1.4.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.0...v1.4.1 +[1.4.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.3.1...v1.4.0 +[1.3.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.3.0...v1.3.1 +[1.3.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.2.0...v1.3.0 +[1.2.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.1.0...v1.2.0 +[1.1.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.3...v1.1.0 +[1.0.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.2...v1.0.3 +[1.0.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.1...v1.0.2 +[1.0.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.0...v1.0.1 +[1.0.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.3...v1.0.0 +[0.2.3]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.2...v0.2.3 +[0.2.2]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.1...v0.2.2 +[0.2.1]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.0...v0.2.1 +[0.2.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/LiteLDev/PreLoader/releases/tag/v0.1.0