diff --git a/CHANGELOG.md b/CHANGELOG.md index f9379d7..fc36a8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog +## Version 1.1.0 - Enhancement release - 2026-07-20 + +- Added supported Python versions: 3.12, 3.13, 3.14 + ## [Version 1.0.3](https://github.com/dataiku/dss-plugin-sendmail/releases/tag/v1.0.3) - Feature release - 2025-03 - Features added diff --git a/code-env/python/desc.json b/code-env/python/desc.json index e8a2358..e48cc73 100644 --- a/code-env/python/desc.json +++ b/code-env/python/desc.json @@ -5,7 +5,10 @@ "PYTHON38", "PYTHON39", "PYTHON310", - "PYTHON311" + "PYTHON311", + "PYTHON312", + "PYTHON313", + "PYTHON314" ], "forceConda": false, "installCorePackages": true, diff --git a/plugin.json b/plugin.json index ee7b2ac..7d8d5f3 100644 --- a/plugin.json +++ b/plugin.json @@ -1,14 +1,16 @@ { - "id": "sendmail", - "version": "1.0.3", - "meta": { - "label": "Send emails", - "description": "Send emails based on a dataset containing a list of contacts, with optional attachments (other datasets)", - "author": "Dataiku", - "icon": "icon-envelope-alt", - "licenseInfo": "Apache Software License", - "url": "https://www.dataiku.com/dss/plugins/info/sendmail.html", - "tags": ["Marketing"], - "supportLevel": "NOT_SUPPORTED" - } + "id": "sendmail", + "version": "1.1.0", + "meta": { + "label": "Send emails", + "description": "Send emails based on a dataset containing a list of contacts, with optional attachments (other datasets)", + "author": "Dataiku", + "icon": "icon-envelope-alt", + "licenseInfo": "Apache Software License", + "url": "https://www.dataiku.com/dss/plugins/info/sendmail.html", + "tags": [ + "Marketing" + ], + "supportLevel": "NOT_SUPPORTED" + } }