Skip to content

Commit 31081da

Browse files
committed
Bump version for release 0.7.0
1 parent f78997f commit 31081da

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Change Log
22

3-
## 0.7.0.dev0 (yyyy-mm-dd)
3+
## 0.7.0 (2025-07-14)
44

5-
This version brings powerful new capabilities such as the addition of a built-in MCP server for integration with AI agents and new primitives for value matching.
5+
We are pleased to announce the release of bdikit version 0.7.0.
6+
This version brings powerful new capabilities such as the addition of a built-in MCP server for integration with AI agents and new primitives for value matching.
67

78
Below is a list of the main changes included in this release:
89

@@ -13,6 +14,7 @@ Below is a list of the main changes included in this release:
1314
- **Evaluation of Schema and Value Matches:** Added methods to evaluate schema and value matches. ([#118](https://github.com/VIDA-NYU/bdi-kit/pull/118))
1415
- **Contextual Matching Support:** Enabled users to attach contextual information to source or target datasets to improve matching quality. ([#117](https://github.com/VIDA-NYU/bdi-kit/pull/117))
1516
- **Caching for Schema Matching:** Implemented a caching mechanism to avoid recomputing expensive match operations. ([#119](https://github.com/VIDA-NYU/bdi-kit/pull/119))
17+
- **Value Matching Caching:** Added caching support for value matching functions to improve performance and reduce redundant computations. Also enhanced the caching mechanism for schema matching. ([#124](https://github.com/VIDA-NYU/bdi-kit/pull/124))
1618
- **Numeric Mapping Support:** Introduced a numeric transformer primitive to handle numeric conversions during value matching. ([#112](https://github.com/VIDA-NYU/bdi-kit/pull/112))
1719

1820

@@ -29,6 +31,7 @@ Below is a list of the main changes included in this release:
2931

3032
- **LLM Method Renaming:** Renamed LLM-based methods for consistency and improved clarity. ([#121](https://github.com/VIDA-NYU/bdi-kit/pull/121))
3133
- **Unification of Value Matching Output:** Standardized outputs from value matching methods to align with schema matching formats. ([#116](https://github.com/VIDA-NYU/bdi-kit/pull/116)) By default, the `match_values()` and `rank_value_matches()` functions now return a single DataFrame instead of a list of DataFrames. Note: This change is backward-incompatible.
34+
- **Terminology Update:** Renamed `'columns'` to `'attributes'` in the outputs of various methods to ensure consistent terminology across the toolkit. ([#123](https://github.com/VIDA-NYU/bdi-kit/pull/123))
3235

3336

3437
### Fix

bdikit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.7.0.dev0"
1+
__version__ = "0.7.0"
22
# To shortcut the import path
33
from bdikit.api import *

0 commit comments

Comments
 (0)