From 1f5bf7907294122db30c7fb5c5ed6be617d61fe5 Mon Sep 17 00:00:00 2001 From: Pepijn Noltes Date: Sun, 1 Oct 2023 18:49:11 +0200 Subject: [PATCH] #509: Update changes for celix properties with type support --- CHANGES.md | 10 ++++++++++ libs/utils/gtest/src/VersionRangeTestSuite.cc | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 26e98b052..54a0ccdc8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,6 +19,16 @@ See the License for the specific language governing permissions and limitations under the License. --> +# Noteworthy Changes for 3.0.0 (TBD) + +## Backwards incompatible changes + +- C Properties are no longer a direct typedef o `hashmap`. + +## New Features + +- Minimal form of type support for celix Properties. + # Noteworthy Changes for 2.4.0 (2023-09-27) ## New Features diff --git a/libs/utils/gtest/src/VersionRangeTestSuite.cc b/libs/utils/gtest/src/VersionRangeTestSuite.cc index 663b7bc10..2c44a79fb 100644 --- a/libs/utils/gtest/src/VersionRangeTestSuite.cc +++ b/libs/utils/gtest/src/VersionRangeTestSuite.cc @@ -418,8 +418,8 @@ TEST_F(VersionRangeTestSuite, createLdapFilterInPlaceInfiniteHigh) { } TEST_F(VersionRangeTestSuite, createLdapFilterWithQualifier) { - celix_autoptr(celix_version_t) low = celix_version_createVersion(1, 2, 2, "0"); - celix_autoptr(celix_version_t) high = celix_version_createVersion(1, 2, 2, "0"); + celix_autoptr(celix_version_t) low = celix_version_create(1, 2, 2, "0"); + celix_autoptr(celix_version_t) high = celix_version_create(1, 2, 2, "0"); celix_autoptr(celix_version_range_t) range = celix_versionRange_createVersionRange(celix_steal_ptr(low), true, celix_steal_ptr(high), true);