From 5e992be6d128d4941b6c87603e4c84d0dcb86dad Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Tue, 6 Aug 2024 15:41:49 -0700 Subject: [PATCH] Refresh CHANGES from release/6.0, bump to 7.0.0.dev0 --- CHANGES | 9 ++++++++- lib/yaml/__init__.py | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 27e11bfa..71a32f44 100644 --- a/CHANGES +++ b/CHANGES @@ -2,7 +2,14 @@ For a complete changelog, see: * https://github.com/yaml/pyyaml/commits/ -* https://bitbucket.org/xi/pyyaml/commits/ + +7.0.0.dev0 (TBD) + +* TBD + +6.0.2 (2024-08-06) + +* https://github.com/yaml/pyyaml/pull/808 -- Support for Cython 3.x and Python 3.13 6.0.1 (2023-07-18) diff --git a/lib/yaml/__init__.py b/lib/yaml/__init__.py index 82493619..971b7f73 100644 --- a/lib/yaml/__init__.py +++ b/lib/yaml/__init__.py @@ -8,7 +8,7 @@ from .loader import * from .dumper import * -__version__ = '6.0.1' +__version__ = '7.0.0.dev0' try: from .cyaml import * __with_libyaml__ = True