summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS.rst14
-rw-r--r--src/snakeoil/__init__.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/NEWS.rst b/NEWS.rst
index 38aabb2e..480ad7d9 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -2,6 +2,20 @@
Release Notes
=============
+snakeoil 0.10.1 (2022-09-30)
+----------------------------
+
+- test/mixins: remove ``mk_named_tempfile``. Use ``tmp_path / [filename]``
+ instead (Arthur Zamarin)
+
+- fileutils: remove deprecated ``write_file``. Use ``Path().write_text``
+ instead (Arthur Zamarin)
+
+- fileutils: remove deprecated ``UnbufferedWriteHandle``. Use
+ ``io.TextIOWrapper`` with ``write_through=True`` instead (Arthur Zamarin)
+
+- descriptors: remove unused ``classproperty`` (Arthur Zamarin)
+
snakeoil 0.10.0 (2022-09-18)
----------------------------
diff --git a/src/snakeoil/__init__.py b/src/snakeoil/__init__.py
index a456ad96..b50ce736 100644
--- a/src/snakeoil/__init__.py
+++ b/src/snakeoil/__init__.py
@@ -11,4 +11,4 @@ This library is a bit of a grabbag of the following:
"""
__title__ = 'snakeoil'
-__version__ = '0.10.0'
+__version__ = '0.10.1'