Skip to content

Commit

Permalink
Version 2.0.0.dev0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex committed Dec 13, 2024
1 parent e663d49 commit 1795ec7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions docs/changes.rst
Original file line number Diff line number Diff line change
@@ -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.0
--------------

Expand Down Expand Up @@ -30,7 +35,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.

Expand Down Expand Up @@ -332,7 +337,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
Expand Down Expand Up @@ -607,7 +612,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.

Expand Down
2 changes: 1 addition & 1 deletion src/wrapt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = ('1', '17', '0')
__version_info__ = ('2', '0', '0', 'dev0')
__version__ = '.'.join(__version_info__)

from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,
Expand Down

0 comments on commit 1795ec7

Please sign in to comment.