From 7ff594d40dfef6172600bb00dbdb1b710b5e742f Mon Sep 17 00:00:00 2001 From: Roque Lopez Date: Thu, 22 Aug 2024 14:12:06 -0400 Subject: [PATCH] Bump version for release 0.3.0 --- CHANGELOG.md | 12 ++++++++---- bdikit/__init__.py | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7181feb..496d1f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,21 @@ Change Log ========== -0.3.0-dev0 (YYYY-MM-DD) ------------------------ +0.3.0 (2024-08-22) +------------------ +Below is a detailed list of important changes included in this release. +New Features and Improvements: - feat: Consistently use np.nan for missing values -- docs: Add documentation for schema mapping methods - feat: Add view_value_matches() method -- docs: Add example for view_value_matches() method - feat: Add new schema matcher based on value matching - feat: Support passing method arguments to top_matches() - feat: Support euclidean distance in CLTopkColumnMatcher +Documentation: +- docs: Add documentation for schema mapping methods +- docs: Add example for view_value_matches() method + 0.2.0 (2024-07-26) ------------------ diff --git a/bdikit/__init__.py b/bdikit/__init__.py index 0454f2c..52d6075 100644 --- a/bdikit/__init__.py +++ b/bdikit/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.3.0.dev0" +__version__ = "0.3.0" # To shortcut the import path from bdikit.api import *