diff --git a/CHANGES b/CHANGES index 94226924..bedc8376 100644 --- a/CHANGES +++ b/CHANGES @@ -2,9 +2,8 @@ For a complete changelog, see: * https://github.com/yaml/pyyaml/commits/ -* https://bitbucket.org/xi/pyyaml/commits/ -6.0.2rc1 (2024-06-10) +6.0.2 (2024-08-06) * https://github.com/yaml/pyyaml/pull/808 -- Support for Cython 3.x and Python 3.13 diff --git a/lib/yaml/__init__.py b/lib/yaml/__init__.py index 93291f36..2ec4f203 100644 --- a/lib/yaml/__init__.py +++ b/lib/yaml/__init__.py @@ -8,7 +8,7 @@ from .loader import * from .dumper import * -__version__ = '6.0.2rc1' +__version__ = '6.0.2' try: from .cyaml import * __with_libyaml__ = True diff --git a/setup.py b/setup.py index 96913ef6..ab9197d0 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ NAME = 'PyYAML' -VERSION = '6.0.1' +VERSION = '6.0.2' DESCRIPTION = "YAML parser and emitter for Python" LONG_DESCRIPTION = """\ YAML is a data serialization format designed for human readability