diff --git a/CHANGELOG.md b/CHANGELOG.md index eef5583..4a8a6ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 1.1.0 - Enhancement release - 2026-07-20 + +- Added supported Python versions: 3.12, 3.13, 3.14 + # Version 1.0.1 - 2025-05-13 * Fix check of unicity that was not working in case of retry due to rate limit. * Freeze version of PyGithub due to breaking chances on more recent versions around rate limit. diff --git a/code-env/python/desc.json b/code-env/python/desc.json index b822cac..0c18851 100644 --- a/code-env/python/desc.json +++ b/code-env/python/desc.json @@ -1,7 +1,14 @@ { - "acceptedPythonInterpreters": ["PYTHON39", "PYTHON310", "PYTHON311"], + "acceptedPythonInterpreters": [ + "PYTHON39", + "PYTHON310", + "PYTHON311", + "PYTHON312", + "PYTHON313", + "PYTHON314" + ], "forceConda": false, "installCorePackages": true, "installJupyterSupport": false, "corePackagesSet": "AUTO" -} \ No newline at end of file +} diff --git a/plugin.json b/plugin.json index c27b0b7..3cf5c22 100644 --- a/plugin.json +++ b/plugin.json @@ -1,14 +1,16 @@ { - "id": "github", - "version": "1.0.1", - "meta": { - "label": "Github", - "description": "Retrieve data about Github repositories", - "author": "Dataiku", - "icon": "icon-github", - "tags": ["Connector"], - "url": "https://www.dataiku.com/product/plugins/github/", - "licenseInfo" : "Apache Software License version 2", - "supportLevel": "NOT_SUPPORTED" - } + "id": "github", + "version": "1.1.0", + "meta": { + "label": "Github", + "description": "Retrieve data about Github repositories", + "author": "Dataiku", + "icon": "icon-github", + "tags": [ + "Connector" + ], + "url": "https://www.dataiku.com/product/plugins/github/", + "licenseInfo": "Apache Software License version 2", + "supportLevel": "NOT_SUPPORTED" + } }