Skip to content

Commit c42fa3b

Browse files
committed
6.0.1 release
1 parent ae08bdc commit c42fa3b

File tree

4 files changed

+14
-25
lines changed

4 files changed

+14
-25
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ For a complete changelog, see:
44
* https://github.com/yaml/pyyaml/commits/
55
* https://bitbucket.org/xi/pyyaml/commits/
66

7+
6.0.1 (2023-07-18)
8+
9+
* https://github.com/yaml/pyyaml/pull/702 -- pin Cython build dep to < 3.0
10+
711
6.0 (2021-10-13)
812

913
* https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown

announcement.msg

Lines changed: 8 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,22 @@
11
From: Ingy döt Net <[email protected]>
22
3-
Subject: [ANN] PyYAML-6.0 Released
3+
Subject: [ANN] PyYAML-6.0.1 Released
44

5-
=====================
6-
Announcing PyYAML-6.0
7-
=====================
5+
=======================
6+
Announcing PyYAML-6.0.1
7+
=======================
88

99
A new release of PyYAML is now available:
10-
https://github.com/yaml/pyyaml/releases/tag/6.0
10+
https://github.com/yaml/pyyaml/releases/tag/6.0.1
1111

12-
The previously-deprecated default loader selection in `yaml.load()` has
13-
been removed; `Loader` is now a required argument.
14-
15-
Support for Python 2.7 and 3.5 has been dropped, and support for Python 3.10
16-
added. It now includes libyaml 0.2.5 extension wheels for MacOS M1
17-
(Apple Silicon/arm64), Linux s390x and Linux aarch64.
18-
19-
Numerous other bugfixes and code cleanups are included in this release.
12+
No code changes; update PEP518 build metadata to require Cython < 3.0 until
13+
packaging code is rewritten for Cython 3.0 compatibility.
2014

2115

2216
Changes
2317
=======
2418

25-
* https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown
26-
* https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types
27-
* https://github.com/yaml/pyyaml/pull/497 -- fix float resolver to ignore `.` and `._`
28-
* https://github.com/yaml/pyyaml/pull/550 -- drop Python 2.7
29-
* https://github.com/yaml/pyyaml/pull/553 -- Fix spelling of “hexadecimal”
30-
* https://github.com/yaml/pyyaml/pull/556 -- fix representation of Enum subclasses
31-
* https://github.com/yaml/pyyaml/pull/557 -- fix libyaml extension compiler warnings
32-
* https://github.com/yaml/pyyaml/pull/560 -- fix ResourceWarning on leaked file descriptors
33-
* https://github.com/yaml/pyyaml/pull/561 -- always require `Loader` arg to `yaml.load()`
34-
* https://github.com/yaml/pyyaml/pull/564 -- remove remaining direct distutils usage
19+
* https://github.com/yaml/pyyaml/pull/702 -- pin Cython build dep to < 3.0
3520

3621

3722
Resources

lib/yaml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .loader import *
99
from .dumper import *
1010

11-
__version__ = '6.0'
11+
__version__ = '6.0.1'
1212
try:
1313
from .cyaml import *
1414
__with_libyaml__ = True

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
NAME = 'PyYAML'
3-
VERSION = '6.0'
3+
VERSION = '6.0.1'
44
DESCRIPTION = "YAML parser and emitter for Python"
55
LONG_DESCRIPTION = """\
66
YAML is a data serialization format designed for human readability

0 commit comments

Comments
 (0)