Accepting request 915616 from home:Simmphonie:python

- update to version 1.1.0
  * Tweaked the implementation of Error.unwrap to avoid creating a
    reference cycle between the exception object and the unwrap
    method's frame. This shouldn't affect most users, but it
    slightly reduces the amount of work that CPython's cycle
    collector has to do, and may reduce GC pauses in some cases. (#29)
  * Drop support for Python 2.7, 3.4, and 3.5. (#27)

OBS-URL: https://build.opensuse.org/request/show/915616
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-outcome?expand=0&rev=10
This commit is contained in:
2021-10-16 09:37:59 +00:00
committed by Git OBS Bridge
parent 0f53a09c87
commit 324b76f853
4 changed files with 17 additions and 5 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Wed Sep 1 20:18:41 UTC 2021 - Torsten Gruner <t.gruner@katodev.de>
- update to version 1.1.0
* Tweaked the implementation of Error.unwrap to avoid creating a
reference cycle between the exception object and the unwrap
method's frame. This shouldn't affect most users, but it
slightly reduces the amount of work that CPython's cycle
collector has to do, and may reduce GC pauses in some cases. (#29)
* Drop support for Python 2.7, 3.4, and 3.5. (#27)
-------------------------------------------------------------------
Fri Dec 4 23:19:56 UTC 2020 - Benjamin Greiner <code@bnavigator.de>