Skip to content

Commit

Permalink
#509: Update changes for celix properties with type support
Browse files Browse the repository at this point in the history
  • Loading branch information
pnoltes committed Oct 1, 2023
1 parent c0218db commit 1f5bf79
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions libs/utils/gtest/src/VersionRangeTestSuite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1f5bf79

Please sign in to comment.