From 1cf8b5884edc585d908cc0c21fe4f8d8e30e829b Mon Sep 17 00:00:00 2001
From: "Aaron (\"AJ\") Steers" <aj@airbyte.io>
Date: Tue, 29 Oct 2024 22:33:21 -0700
Subject: [PATCH] Destination-MotherDuck: Disable PyPi publish; Add package
 declaration (#47987)

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
---
 .../connectors/destination-motherduck/metadata.yaml          | 4 ++--
 .../connectors/destination-motherduck/pyproject.toml         | 5 ++++-
 docs/integrations/destinations/motherduck.md                 | 1 +
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml
index 29ceebea0d06..f931b0dbaf43 100644
--- a/airbyte-integrations/connectors/destination-motherduck/metadata.yaml
+++ b/airbyte-integrations/connectors/destination-motherduck/metadata.yaml
@@ -4,7 +4,7 @@ data:
   connectorSubtype: database
   connectorType: destination
   definitionId: 042ee9b5-eb98-4e99-a4e5-3f0d573bee66
-  dockerImageTag: 0.1.11
+  dockerImageTag: 0.1.12
   dockerRepository: airbyte/destination-motherduck
   githubIssueLabel: destination-motherduck
   icon: duckdb.svg
@@ -20,7 +20,7 @@ data:
     breakingChanges: []
   remoteRegistries:
     pypi:
-      enabled: true
+      enabled: false
       packageName: airbyte-destination-motherduck
   resourceRequirements:
     jobSpecific:
diff --git a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml
index 3d80cfbefb89..f2d42f1d639c 100644
--- a/airbyte-integrations/connectors/destination-motherduck/pyproject.toml
+++ b/airbyte-integrations/connectors/destination-motherduck/pyproject.toml
@@ -1,11 +1,14 @@
 [tool.poetry]
 name = "airbyte-destination-motherduck"
-version = "0.1.11"
+version = "0.1.12"
 description = "Destination implementation for MotherDuck."
 authors = ["Guen Prawiroatmodjo, Simon Späti, Airbyte"]
 license = "MIT"
 readme = "README.md"
 
+[[tool.poetry.packages]]
+include = "destination_motherduck"
+
 [tool.poetry.dependencies]
 python = "^3.10"
 
diff --git a/docs/integrations/destinations/motherduck.md b/docs/integrations/destinations/motherduck.md
index a9b2f776428a..cb3bac2d1964 100644
--- a/docs/integrations/destinations/motherduck.md
+++ b/docs/integrations/destinations/motherduck.md
@@ -69,6 +69,7 @@ This connector is primarily designed to work with MotherDuck and local DuckDB fi
 
 | Version | Date       | Pull Request                                              | Subject                                                                                                                                                                                                                                                                                                                                                                                                |
 |:--------| :--------- | :-------------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| 0.1.12 | 2024-10-30 | [47987](https://github.com/airbytehq/airbyte/pull/47987) | Disable PyPi publish. |
 | 0.1.11 | 2024-10-30 | [47979](https://github.com/airbytehq/airbyte/pull/47979) | Rename package. |
 | 0.1.10 | 2024-10-29 | [47958](https://github.com/airbytehq/airbyte/pull/47958) | Add state counts and other fixes. |
 | 0.1.9 | 2024-10-29 | [47950](https://github.com/airbytehq/airbyte/pull/47950) | Fix bug: add double quotes to column names that are reserved keywords. |