diff --git a/CHANGES.txt b/CHANGES.txt index e3e6532aa..48875c83e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,19 +8,20 @@ Note that build 228 was the last version supporting Python 2. Since build 300: ---------------- -* CoClass objects should work better with special methods like __len__ etc. - (#1699) - -* Creating a `win32crypt.CRYPT_ATTRIBUTE` object now correctly sets `cbData`. - -* COM objects are now registered with the full path to pythoncomXX.dll, fixes - #1704. - * Fix some confusion on how dynamic COM object properties work. The old code was confused, so there's a chance there will be some subtle regression here - please open a bug if you find anything, but this should fix #1427. +* COM objects are now registered with the full path to pythoncomXX.dll, fixes + #1704. + +* Creating a `win32crypt.CRYPT_ATTRIBUTE` object now correctly sets `cbData`. + +* Add wrap and unwrap operations defined in the GSSAPI to the sspi module + and enhance the examples given in this module. + (#1692, Emmanuel Coirier) + * Fix a bug in `win32profile.GetEnvironmentStrings()` relating to environment variables with an equals sign (@maxim-krikun in #1661) @@ -30,6 +31,9 @@ Since build 300: * Added win32com.shell.SHGetKnownFolderPath() and related constants. +* CoClass objects should work better with special methods like __len__ etc. + (#1699) + * Shifted work in win32.lib.pywin32_bootstrap to Python's import system from manual path manipulations (@wkschwartz in #1651) @@ -37,10 +41,6 @@ Since build 300: containing the null character followed by junk characters. (#1654, #1660, Lincoln Puzey) -* Add wrap and unwrap operations defined in the GSSAPI to the sspi module - and enhance the examples given in this module. - (#1692, Emmanuel Coirier) - Since build 228: ---------------- * Fixed a bug where win32com.client.VARIANT params were returned in the reverse diff --git a/setup.py b/setup.py index 6c0ee7540..297d15cb1 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -build_id="300.1" # may optionally include a ".{patchno}" suffix. +build_id="301" # may optionally include a ".{patchno}" suffix. # Putting build_id at the top prevents automatic __doc__ assignment, and # I *want* the build number at the top :) __doc__="""This is a distutils setup-script for the pywin32 extensions