diff --git a/CHANGES.md b/CHANGES.md index 4dd00c48d..7e7b0069b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -58,6 +58,8 @@ limitations under the License. - linked_list.h is removed and no longer supported. Use celix_array_list.h instead. - ip_utils.h is removed and no longer supported. - array_list.h is removed and no longer supported. Use celix_array_list.h instead. +- version.h and version_range.h are removed and no longer supported. Use celix_version.h and celix_version_range.h + instead. ## New Features diff --git a/libs/framework/src/manifest_parser.c b/libs/framework/src/manifest_parser.c index 5733a02fb..1b1e38954 100644 --- a/libs/framework/src/manifest_parser.c +++ b/libs/framework/src/manifest_parser.c @@ -34,11 +34,10 @@ #include "celix_log.h" struct manifestParser { - module_pt owner; - manifest_pt manifest; - - celix_version_t* bundleVersion; - //TODO: Implement Requirement-Capability-Model using RCM library + module_pt owner; + manifest_pt manifest; + celix_version_t* bundleVersion; + // TODO: Implement Requirement-Capability-Model using RCM library }; celix_status_t manifestParser_create(module_pt owner, manifest_pt manifest, manifest_parser_pt *manifest_parser) {