Skip to content

Commit f1dc84a

Browse files
committed
Merge branch 'bewithgaurav/fix-bulkcopy-kwargs' of https://github.com/microsoft/mssql-python into bewithgaurav/fix-bulkcopy-kwargs
2 parents f01756b + 03714c7 commit f1dc84a

File tree

3 files changed

+4
-20
lines changed

3 files changed

+4
-20
lines changed

PyPI_Description.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,11 @@ PyBind11 provides:
3535
- Memory-safe bindings
3636
- Clean and Pythonic API, while performance-critical logic remains in robust, maintainable C++.
3737

38-
## What's new in v1.2.0
39-
40-
### Enhancements
41-
42-
- **Connection.closed Property** - Added `Connection.closed` property to check if a connection is closed, improving connection state management.
43-
44-
- **Parameter as Dictionary** - Added support for passing parameters as dictionaries, providing more flexible query parameterization.
45-
46-
- **Copilot Prompts** - Introduced Copilot prompts for AI-assisted development, enhancing developer productivity.
38+
## What's new in v1.3.0
4739

4840
### Bug Fixes
4941

50-
- **FetchMany with LOB Columns** - Fixed `fetchmany(n)` ignoring batch size when working with LOB (Large Object) columns.
51-
52-
- **Non-ASCII Path Resolution** - Fixed path resolution for files with non-ASCII characters on Windows.
53-
54-
### CI/Infrastructure
55-
56-
- **SQL Server 2025 Test Support** - Added support for testing against SQL Server 2025 across Windows, macOS, and Linux CI pipelines, ensuring driver compatibility with the upcoming SQL Server release.
57-
58-
- **Forked PR Coverage Workflow** - Implemented coverage comment workflow for pull requests from forked repositories, improving the contribution experience for external contributors.
42+
- **Segmentation Fault Fix** - Fixed segmentation fault in libmsodbcsql-18.5 during SQLFreeHandle() (#415).
5943

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

mssql_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from .helpers import Settings, get_settings, _settings, _settings_lock
1616

1717
# Driver version
18-
__version__ = "1.2.0"
18+
__version__ = "1.3.0"
1919

2020
# Exceptions
2121
# https://www.python.org/dev/peps/pep-0249/#exceptions

setup.py

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

9797
setup(
9898
name="mssql-python",
99-
version="1.2.0",
99+
version="1.3.0",
100100
description="A Python library for interacting with Microsoft SQL Server",
101101
long_description=open("PyPI_Description.md", encoding="utf-8").read(),
102102
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)