Skip to content

Commit

Permalink
changes for 6.0.2rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzmahone committed Jun 10, 2024
1 parent c235825 commit 0c09c1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ For a complete changelog, see:
* https://github.com/yaml/pyyaml/commits/
* https://bitbucket.org/xi/pyyaml/commits/

6.0.2rc1 (2024-06-10)

* https://github.com/yaml/pyyaml/pull/808 -- Support for Cython 3.x and Python 3.13

6.0.1 (2023-07-18)

* https://github.com/yaml/pyyaml/pull/702 -- pin Cython build dep to < 3.0
Expand Down
2 changes: 1 addition & 1 deletion lib/yaml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .loader import *
from .dumper import *

__version__ = '6.0.1'
__version__ = '6.0.2rc1'
try:
from .cyaml import *
__with_libyaml__ = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

NAME = 'PyYAML'
VERSION = '6.0.1'
VERSION = '6.0.2rc1'
DESCRIPTION = "YAML parser and emitter for Python"
LONG_DESCRIPTION = """\
YAML is a data serialization format designed for human readability
Expand Down

0 comments on commit 0c09c1b

Please sign in to comment.