Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0ebeafd4bb | |||
| 03cce766cd |
+7
-1
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.0.0-pre.7] - 2026-03-07
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- `stk_module_load()`: added missing dependency failure logging when a module is deferred to the pending queue.
|
||||||
|
|
||||||
## [1.0.0-pre.6] - 2026-03-07
|
## [1.0.0-pre.6] - 2026-03-07
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@@ -178,7 +183,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Dependency management and versioning not yet implemented
|
- Dependency management and versioning not yet implemented
|
||||||
- API is unstable and subject to change in future releases
|
- API is unstable and subject to change in future releases
|
||||||
|
|
||||||
[Unreleased]: https://github.com/anth64/stk/compare/v1.0.0-pre.6...HEAD
|
[Unreleased]: https://github.com/anth64/stk/compare/v1.0.0-pre.7...HEAD
|
||||||
|
[1.0.0-pre.7]: https://github.com/anth64/stk/compare/v1.0.0-pre.6...v1.0.0-pre.7
|
||||||
[1.0.0-pre.6]: https://github.com/anth64/stk/compare/v1.0.0-pre.5...v1.0.0-pre.6
|
[1.0.0-pre.6]: https://github.com/anth64/stk/compare/v1.0.0-pre.5...v1.0.0-pre.6
|
||||||
[1.0.0-pre.5]: https://github.com/anth64/stk/compare/v1.0.0-pre.4...v1.0.0-pre.5
|
[1.0.0-pre.5]: https://github.com/anth64/stk/compare/v1.0.0-pre.4...v1.0.0-pre.5
|
||||||
[1.0.0-pre.4]: https://github.com/anth64/stk/compare/v1.0.0-pre.3...v1.0.0-pre.4
|
[1.0.0-pre.4]: https://github.com/anth64/stk/compare/v1.0.0-pre.3...v1.0.0-pre.4
|
||||||
|
|||||||
@@ -234,7 +234,7 @@ stk_init();
|
|||||||
|
|
||||||
## Project Status
|
## Project Status
|
||||||
|
|
||||||
**Current Version:** 1.0.0-pre.6
|
**Current Version:** 1.0.0-pre.7
|
||||||
|
|
||||||
### What Works
|
### What Works
|
||||||
- Cross-platform module loading and hot-reloading
|
- Cross-platform module loading and hot-reloading
|
||||||
|
|||||||
@@ -563,6 +563,7 @@ unsigned char stk_module_load(const char *path, int index)
|
|||||||
|
|
||||||
result = stk_validate_dependencies_single(index);
|
result = stk_validate_dependencies_single(index);
|
||||||
if (result != STK_MOD_INIT_SUCCESS) {
|
if (result != STK_MOD_INIT_SUCCESS) {
|
||||||
|
stk_log_dependency_failures(index, "Deferring");
|
||||||
stk_module_discard(index);
|
stk_module_discard(index);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user