Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
History
=======

1.0.1 (2026-05-08)
------------------

* Added ``databricks_lakebase`` to ``DatabaseType`` enum.

1.0.0 (2026-04-21)
------------------

Expand Down
1 change: 1 addition & 0 deletions datamasque/client/models/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class DatabaseType(Enum):
mssql_linked = "mssql_linked"
snowflake = "snowflake"
mongodb = "mongodb"
databricks_lakebase = "databricks_lakebase"


class SnowflakeStageLocation(str, Enum):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" },
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.0.1
commit = True
tag = True

Expand Down
Loading