diff --git a/sdk/ml/azure-ai-ml/CHANGELOG.md b/sdk/ml/azure-ai-ml/CHANGELOG.md index aed0567598c7..d188db48d4a3 100644 --- a/sdk/ml/azure-ai-ml/CHANGELOG.md +++ b/sdk/ml/azure-ai-ml/CHANGELOG.md @@ -1,21 +1,23 @@ # Release History -## 0.2.0 (Unreleased) +## 1.1.0 (Unreleased) ### Features Added - - Most configuration classes from the entity package now implement the standard mapping protocol. +- Most configuration classes from the entity package now implement the standard mapping protocol. + ### Breaking Changes ### Bugs Fixed +- MLClient.from_config can now find the default config.json on Compute Instance when running sample notebooks. ### Other Changes -## 0.1.0 (In Progress) +## 1.0.0 (2022-10-10) - GA release - Dropped support for Python 3.6. The Python versions supported for this release are 3.7-3.10. ### Features Added - + ### Breaking Changes - OnlineDeploymentOperations.delete has been renamed to begin_delete. - Datastore credentials are switched to use unified credential configuration classes. @@ -24,14 +26,12 @@ - Workspace ManagedServiceIdentity has been replaced by IdentityConfiguration. ### Bugs Fixed -- MLClient.from_config can now find the default config.json on Compute Instance when running sample notebooks. ### Other Changes - Switched Compute operations to use Oct preview API version. - Updated batch deployment/endpoint invoke and list-jobs function signatures with curated BatchJob class. - -## 0.1.0b8 (In Progress) +## 0.1.0b8 (2022-10-07) ### Features Added - Support passing JobService as argument to Command() diff --git a/sdk/ml/azure-ai-ml/README.md b/sdk/ml/azure-ai-ml/README.md index a90e843ea55b..de3218705219 100644 --- a/sdk/ml/azure-ai-ml/README.md +++ b/sdk/ml/azure-ai-ml/README.md @@ -1,11 +1,11 @@ # Azure ML Package client library for Python -We are excited to introduce the public preview of Azure Machine Learning Python SDK v2. The Python SDK v2 introduces new SDK capabilities like standalone local jobs, reusable components for pipelines and managed online/batch inferencing. Python SDK v2 allows you to move from simple to complex tasks easily and incrementally. This is enabled by using a common object model which brings concept reuse and consistency of actions across various tasks. The SDK v2 shares its foundation with the CLI v2 which is currently in also in public preview. +We are excited to introduce the GA of Azure Machine Learning Python SDK v2. The Python SDK v2 introduces new SDK capabilities like standalone local jobs, reusable components for pipelines and managed online/batch inferencing. Python SDK v2 allows you to move from simple to complex tasks easily and incrementally. This is enabled by using a common object model which brings concept reuse and consistency of actions across various tasks. The SDK v2 shares its foundation with the CLI v2 which is also GA. [Source code][source_code] | [Package (PyPI)][ml_pypi] | [API reference documentation][ml_ref_docs] | [Product documentation][product_documentation] | [Samples][ml_samples] -This package has been tested with Python 3.6, 3.7, 3.8, 3.9 and 3.10. +This package has been tested with Python 3.7, 3.8, 3.9 and 3.10. For a more complete set of Azure libraries, see https://aka.ms/azsdk/python/all @@ -13,7 +13,7 @@ For a more complete set of Azure libraries, see https://aka.ms/azsdk/python/all ### Prerequisites -- Python 3.6 or later is required to use this package. +- Python 3.7 or later is required to use this package. - You must have an [Azure subscription][azure_subscription]. - An [Azure Machine Learning Workspace][workspace]. @@ -114,8 +114,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [source_code]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/ml/azure-ai-ml [ml_pypi]: https://pypi.org/project/azure-ai-ml/ -[ml_ref_docs]: https://docs.microsoft.com/python/api/azure-ai-ml/?view=azure-ml-py -[ml_samples]: https://github.com/Azure/azureml-examples/tree/sdk-preview/sdk +[ml_ref_docs]: https://learn.microsoft.com/python/api/overview/azure/ai-ml-readme?view=azure-python +[ml_samples]: https://github.com/Azure/azureml-examples/tree/main/sdk/python [product_documentation]: https://docs.microsoft.com/azure/machine-learning/ [azure_subscription]: https://azure.microsoft.com/free/ [workspace]: https://docs.microsoft.com/azure/machine-learning/concept-workspace diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_version.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_version.py index 722dabd84142..c95c72bc2c47 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_version.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_version.py @@ -2,4 +2,4 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # --------------------------------------------------------- -VERSION = "0.2.0" +VERSION = "1.1.0" diff --git a/sdk/ml/azure-ai-ml/setup.py b/sdk/ml/azure-ai-ml/setup.py index 418add827dd3..275e5ffb67a4 100644 --- a/sdk/ml/azure-ai-ml/setup.py +++ b/sdk/ml/azure-ai-ml/setup.py @@ -41,7 +41,7 @@ author_email="azuresdkengsysadmins@microsoft.com", url="https://github.com/Azure/azure-sdk-for-python", classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only",