Skip to content

Commit 2cdd2f5

Browse files
committed
chore: update changelog
1 parent 0cd4ac5 commit 2cdd2f5

File tree

2 files changed

+70
-5
lines changed

2 files changed

+70
-5
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@ jobs:
5252
steps:
5353
- uses: actions/checkout@v4
5454

55-
- run: |
56-
choco install llvm -y --version=17.0.6
57-
5855
- run: |
5956
Get-ChildItem src/ -Filter *.cpp -Recurse | ForEach-Object { clang-format --dry-run -Werror $_.FullName; if ($LASTEXITCODE -ne 0) { exit 1; } }
6057
Get-ChildItem src/ -Filter *.h -Recurse | ForEach-Object { clang-format --dry-run -Werror $_.FullName; if ($LASTEXITCODE -ne 0) { exit 1; } }

CHANGELOG.md

Lines changed: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,78 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
## [1.6.3] - 2024-06-17
11+
12+
### Changed
13+
14+
- Specify the versions of dependencies.
15+
16+
## [1.6.2] - 2024-04-06
17+
18+
### Fixed
19+
20+
- Fix 126 error.
21+
22+
## [1.6.1] - 2024-05-31
23+
24+
### Fixed
25+
26+
- Fixed abi compatibility.
27+
28+
## [1.6.0] - 2024-05-30
29+
30+
### Changed
31+
32+
- Better dependency diagnostics.
33+
34+
## [1.5.2] - 2024-05-17
35+
36+
### Added
37+
38+
- Added help message when load fails.
39+
840
## [1.5.1] - 2024-02-06
941

42+
### Changed
43+
44+
- Refactor preload plugin loading in PreLoader.cpp
45+
- Refactor plugin loading and error handling
46+
1047
### Fixed
1148

12-
- Failing to load.
49+
- Fix loadPreloadNativePlugins crash and replace sv2u8sv to u8 str
50+
51+
## [1.5.0] - 2024-02-05
52+
53+
### Changed
54+
55+
- Preload native plugins
56+
- Clean up code
1357

14-
[1.5.1]: https://github.com/LiteLDev/PreLoader/releases/tag/v1.5.1
58+
[Unreleased]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.3...HEAD
59+
[1.6.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.2...v1.6.3
60+
[1.6.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.1...v1.6.2
61+
[1.6.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.6.0...v1.6.1
62+
[1.6.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.5.2...v1.6.0
63+
[1.5.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.5.1...v1.5.2
64+
[1.5.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.5.0...v1.5.1
65+
[1.5.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.3...v1.5.0
66+
[1.4.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.2...v1.4.3
67+
[1.4.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.1...v1.4.2
68+
[1.4.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.4.0...v1.4.1
69+
[1.4.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.3.1...v1.4.0
70+
[1.3.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.3.0...v1.3.1
71+
[1.3.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.2.0...v1.3.0
72+
[1.2.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.1.0...v1.2.0
73+
[1.1.0]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.3...v1.1.0
74+
[1.0.3]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.2...v1.0.3
75+
[1.0.2]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.1...v1.0.2
76+
[1.0.1]: https://github.com/LiteLDev/LeviLamina/compare/v1.0.0...v1.0.1
77+
[1.0.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.3...v1.0.0
78+
[0.2.3]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.2...v0.2.3
79+
[0.2.2]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.1...v0.2.2
80+
[0.2.1]: https://github.com/LiteLDev/LeviLamina/compare/v0.2.0...v0.2.1
81+
[0.2.0]: https://github.com/LiteLDev/LeviLamina/compare/v0.1.0...v0.2.0
82+
[0.1.0]: https://github.com/LiteLDev/PreLoader/releases/tag/v0.1.0

0 commit comments

Comments
 (0)