Skip to content

Commit bf0aeb7

Browse files
authored
Update the release versions for ML SDK (#26752)
* Update the release versions for ML SDK * Update the readme for ML project for GA * Update version in setup file
1 parent 6f89b81 commit bf0aeb7

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

sdk/ml/azure-ai-ml/CHANGELOG.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
# Release History
22

3-
## 0.2.0 (Unreleased)
3+
## 1.1.0 (Unreleased)
44

55
### Features Added
6-
- Most configuration classes from the entity package now implement the standard mapping protocol.
6+
- Most configuration classes from the entity package now implement the standard mapping protocol.
7+
78
### Breaking Changes
89

910
### Bugs Fixed
11+
- MLClient.from_config can now find the default config.json on Compute Instance when running sample notebooks.
1012

1113
### Other Changes
1214

13-
## 0.1.0 (In Progress)
15+
## 1.0.0 (2022-10-10)
1416
- GA release
1517
- Dropped support for Python 3.6. The Python versions supported for this release are 3.7-3.10.
1618

1719
### Features Added
18-
20+
1921
### Breaking Changes
2022
- OnlineDeploymentOperations.delete has been renamed to begin_delete.
2123
- Datastore credentials are switched to use unified credential configuration classes.
@@ -24,14 +26,12 @@
2426
- Workspace ManagedServiceIdentity has been replaced by IdentityConfiguration.
2527

2628
### Bugs Fixed
27-
- MLClient.from_config can now find the default config.json on Compute Instance when running sample notebooks.
2829

2930
### Other Changes
3031
- Switched Compute operations to use Oct preview API version.
3132
- Updated batch deployment/endpoint invoke and list-jobs function signatures with curated BatchJob class.
3233

33-
34-
## 0.1.0b8 (In Progress)
34+
## 0.1.0b8 (2022-10-07)
3535

3636
### Features Added
3737
- Support passing JobService as argument to Command()

sdk/ml/azure-ai-ml/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# Azure ML Package client library for Python
22

3-
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.
3+
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.
44

55
[Source code][source_code] | [Package (PyPI)][ml_pypi] | [API reference documentation][ml_ref_docs] | [Product documentation][product_documentation] | [Samples][ml_samples]
66

77

8-
This package has been tested with Python 3.6, 3.7, 3.8, 3.9 and 3.10.
8+
This package has been tested with Python 3.7, 3.8, 3.9 and 3.10.
99

1010
For a more complete set of Azure libraries, see https://aka.ms/azsdk/python/all
1111

1212
## Getting started
1313

1414
### Prerequisites
1515

16-
- Python 3.6 or later is required to use this package.
16+
- Python 3.7 or later is required to use this package.
1717
- You must have an [Azure subscription][azure_subscription].
1818
- An [Azure Machine Learning Workspace][workspace].
1919

@@ -114,8 +114,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
114114

115115
[source_code]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/ml/azure-ai-ml
116116
[ml_pypi]: https://pypi.org/project/azure-ai-ml/
117-
[ml_ref_docs]: https://docs.microsoft.com/python/api/azure-ai-ml/?view=azure-ml-py
118-
[ml_samples]: https://github.com/Azure/azureml-examples/tree/sdk-preview/sdk
117+
[ml_ref_docs]: https://learn.microsoft.com/python/api/overview/azure/ai-ml-readme?view=azure-python
118+
[ml_samples]: https://github.com/Azure/azureml-examples/tree/main/sdk/python
119119
[product_documentation]: https://docs.microsoft.com/azure/machine-learning/
120120
[azure_subscription]: https://azure.microsoft.com/free/
121121
[workspace]: https://docs.microsoft.com/azure/machine-learning/concept-workspace

sdk/ml/azure-ai-ml/azure/ai/ml/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) Microsoft Corporation. All rights reserved.
33
# ---------------------------------------------------------
44

5-
VERSION = "0.2.0"
5+
VERSION = "1.1.0"

sdk/ml/azure-ai-ml/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
author_email="[email protected]",
4242
url="https://github.com/Azure/azure-sdk-for-python",
4343
classifiers=[
44-
"Development Status :: 4 - Beta",
44+
"Development Status :: 5 - Production/Stable",
4545
"Programming Language :: Python",
4646
"Programming Language :: Python :: 3",
4747
"Programming Language :: Python :: 3 :: Only",

0 commit comments

Comments
 (0)