Skip to content

Commit 8986318

Browse files
authored
RELEASE: 0.6.0 (#89)
### Summary This pull request introduces updates to the `mssql-python` project, including versioning changes, platform support enhancements, and pipeline adjustments. The most important changes involve updating the version to `0.6.0`, clarifying macOS support, and commenting out a release task in the pipeline for testing purposes. ### Versioning and Feature Updates: * [`setup.py`](diffhunk://#diff-60f61ab7a8d1910d86d9fda2261620314edcae5894d5aaa236b821c7256badd7L89-R89): Updated the version of the `mssql-python` package from `0.5.0` to `0.6.0` to reflect the latest changes and improvements. * [`PyPI_Description.md`](diffhunk://#diff-5236254592b2fea0773f17424b16acf82e3aa351ad8bae33871de5c98eb76eedL12-R13): Enhanced macOS support to include Intel-based systems in addition to ARM-based systems (M-series). Added clarification that the connection pooling feature is currently available only on Windows. ### Pipeline Adjustments: * [`eng/pipelines/dummy-release-pipeline.yml`](diffhunk://#diff-de3eb3d456dcb54748a65dfec8142a203b22d898a7f95930cfaffc5557d8d134L30-R51): Commented out the `ESRP Release` task, which was previously configured for a dummy Maven release for testing purposes. This change prevents the task from being executed while retaining the configuration for future reference.
1 parent 7cdc81e commit 8986318

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

PyPI_Description.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ We are making progress - The Public Preview of our driver is now available! This
99
### What's Included:
1010

1111
- Everything from alpha
12-
- macOS Support: The mssql-python driver now supports macOS on ARM-based systems, enabling seamless development on Apple Silicon (M-series) devices. This milestone strengthens our cross-platform capabilities—and we’re just getting started. Linux support is on the horizon!
13-
- Connection Pooling: We've introduced a robust and configurable connection pooling system designed to significantly enhance performance and optimize resource utilization. This feature ensures more efficient management of database connections, especially under high-load scenarios
12+
- macOS Support: The mssql-python driver now supports macOS on Intel as well as ARM-based systems, enabling seamless development on Apple Silicon (M-series) devices. This milestone strengthens our cross-platform capabilities—and we’re just getting started. Linux support is on the horizon!
13+
- Connection Pooling: We've introduced a robust and configurable connection pooling system designed to significantly enhance performance and optimize resource utilization. This feature ensures more efficient management of database connections, especially under high-load scenarios. This feature is only available on Windows as of now.
1414

1515
For more information, please visit the project link on Github: https://github.com/microsoft/mssql-python
1616

eng/pipelines/official-release-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
inputs:
1515
buildType: 'specific'
1616
project: '$(System.TeamProject)'
17-
definition: 2134
18-
buildVersionToDownload: 'latestFromBranch'
19-
branchName: 'refs/heads/main'
17+
definition: 2162
18+
buildVersionToDownload: 'latest'
19+
branchName: '$(Build.SourceBranch)'
2020
artifactName: 'mssql-python-wheels-dist'
2121
targetPath: '$(Build.SourcesDirectory)\dist'
2222
displayName: 'Download release wheel files artifact from latest successful run on main branch'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def finalize_options(self):
8686

8787
setup(
8888
name='mssql-python',
89-
version='0.5.0',
89+
version='0.6.0',
9090
description='A Python library for interacting with Microsoft SQL Server',
9191
long_description=open('PyPI_Description.md', encoding='utf-8').read(),
9292
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)