diff --git a/CHANGES.txt b/CHANGES.txt index 2fc54aba0..6a91bd159 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -11,14 +11,19 @@ or As of build 305, installation .exe files have been deprecated; see https://mhammond.github.io/pywin32_installers.html. -Coming in build 305, as yet unreleased +Coming in build 306, as yet unreleased -------------------------------------- + +Build 305, released 2022-11-06 +------------------------------ * Installation .exe files were deprecated. * @kxrob put a lot of work towards removing use of the deprecated Unicode API so we can build on Python 3.12. This should be largely invisible, but please report any unintended consequences. +* odbc: Handle `varchar(max)`/`nvarchar(max)` column sizes (#1954) + * win32api.GetTickCount() now returns an unsigned 64bit integer (@kxrob, #1946) * win32pipe.GetNamedPipeHandleState() now takes a 3rd optional param diff --git a/setup.py b/setup.py index d1023eb5d..51d98b4c3 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -build_id = "304.1" # may optionally include a ".{patchno}" suffix. +build_id = "305" # may optionally include a ".{patchno}" suffix. __doc__ = """This is a distutils setup-script for the pywin32 extensions.