diff --git a/HISTORY.rst b/HISTORY.rst index 6a2a49c..c5571b7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,11 @@ History ======= +1.0.1 (2026-05-08) +------------------ + +* Added ``databricks_lakebase`` to ``DatabaseType`` enum. + 1.0.0 (2026-04-21) ------------------ diff --git a/datamasque/client/models/connection.py b/datamasque/client/models/connection.py index 45f4780..a51d932 100644 --- a/datamasque/client/models/connection.py +++ b/datamasque/client/models/connection.py @@ -44,6 +44,7 @@ class DatabaseType(Enum): mssql_linked = "mssql_linked" snowflake = "snowflake" mongodb = "mongodb" + databricks_lakebase = "databricks_lakebase" class SnowflakeStageLocation(str, Enum): diff --git a/pyproject.toml b/pyproject.toml index 3ae4919..24d07ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "datamasque-python" -version = "1.0.0" +version = "1.0.1" description = "Official Python client for the DataMasque data-masking API." authors = [ { name = "DataMasque Ltd" }, diff --git a/setup.cfg b/setup.cfg index da234e7..d0bf705 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True