-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/509 remove deprecated version #728
Conversation
# Conflicts: # libs/framework/include_deprecated/module.h # libs/utils/include_deprecated/celix_utils_api.h
…deprecated-version
…deprecated-version # Conflicts: # bundles/remote_services/remote_service_admin_dfi/src/import_registration_dfi.c # libs/dfi/gtest/src/dyn_interface_tests.cpp # libs/dfi/gtest/src/dyn_message_tests.cpp
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #728 +/- ##
==========================================
+ Coverage 88.85% 88.94% +0.08%
==========================================
Files 216 216
Lines 24293 24200 -93
==========================================
- Hits 21585 21524 -61
+ Misses 2708 2676 -32 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
libs/framework/src/manifest_parser.c
Outdated
@@ -37,7 +37,7 @@ struct manifestParser { | |||
module_pt owner; | |||
manifest_pt manifest; | |||
|
|||
version_pt bundleVersion; | |||
celix_version_t* bundleVersion; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick: indentation mismatch when reviewed in CLion.
Also fix indentation in manifest_parser.c.
This PR removes the deprecated
version.h
andversion_range.h
headers, their implementation and usage.This is part of #509.
Also refactors unit test so that the
celix_
api is always used and introduces acelix_version_type.h
andcelix_version_range_type.h
(which is part of #715)