From 2a89a4f0a753efd97a7d18adf74dcdb4e61b0044 Mon Sep 17 00:00:00 2001 From: Marcelo Trylesinski Date: Fri, 13 Dec 2024 10:42:31 +0100 Subject: [PATCH] Fix --- docs/changes.rst | 11 ++++++++--- src/wrapt/__init__.py | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/changes.rst b/docs/changes.rst index ee091d0..8c97707 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,11 @@ Release Notes ============= +Version 2.0.0 +-------------- + +.. What should I write here? It looks like previous versions already mention drop of the Python versions. + Version 1.17.1 -------------- @@ -40,7 +45,7 @@ Note that version 1.17.0 drops support for Python 3.6 and 3.7. Python version a `__get__()` method for binding, and it was called in context whhere binding would be attempted, it would fail with error that `__get__()` did not exist when instead it should have been called directly, ignoring that binding was - not possible. + not possible. * The `__round__` hook for the object proxy didn't accept `ndigits` argument. @@ -342,7 +347,7 @@ Version 1.11.0 result in an exception being raised to indicate that a proxy object had not been initialised when in fact the argument wasn't even an instance of a proxy object. - + Because an incorrect cast in C level code was being performed and an attribute in memory checked on the basis of it being a type different to what it actually was, technically it may have resulted in a process @@ -617,7 +622,7 @@ Version 1.10.0 * The ``inspect.signature()`` function was only added in Python 3.3. Use fallback when doesn't exist and on Python 3.2 or earlier Python 3 versions. - + Note that testing is only performed for Python 3.3+, so it isn't actually known if the ``wrapt`` package works on Python 3.2. diff --git a/src/wrapt/__init__.py b/src/wrapt/__init__.py index ffc8049..51c92e7 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '17', '1') +__version_info__ = ('2', '0', '0', 'dev0') __version__ = '.'.join(__version_info__) from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,