Skip to content

Commit 4808fba

Browse files
nitzmahoneingydotnet
authored andcommitted
6.0b1 release
1 parent d5aba40 commit 4808fba

File tree

5 files changed

+45
-17
lines changed

5 files changed

+45
-17
lines changed

CHANGES

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

7+
6.0b1 (2021-10-04)
8+
9+
* https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown
10+
* https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types
11+
* https://github.com/yaml/pyyaml/pull/497 -- fix float resolver to ignore `.` and `._`
12+
* https://github.com/yaml/pyyaml/pull/550 -- drop Python 2.7
13+
* https://github.com/yaml/pyyaml/pull/553 -- Fix spelling of “hexadecimal”
14+
* https://github.com/yaml/pyyaml/pull/556 -- fix representation of Enum subclasses
15+
* https://github.com/yaml/pyyaml/pull/557 -- fix libyaml extension compiler warnings
16+
* https://github.com/yaml/pyyaml/pull/560 -- fix ResourceWarning on leaked file descriptors
17+
* https://github.com/yaml/pyyaml/pull/561 -- always require `Loader` arg to `yaml.load()`
18+
* https://github.com/yaml/pyyaml/pull/564 -- remove remaining direct distutils usage
19+
720
5.4.1 (2021-01-20)
821

922
* https://github.com/yaml/pyyaml/pull/480 -- Fix stub compat with older pyyaml versions that may unwittingly load it

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,16 @@ To run the tests, type `python setup.py test`.
3131

3232
## Further Information
3333

34-
- For more information, check the
34+
* For more information, check the
3535
[PyYAML homepage](https://github.com/yaml/pyyaml).
3636

37-
- [PyYAML tutorial and reference](http://pyyaml.org/wiki/PyYAMLDocumentation).
37+
* [PyYAML tutorial and reference](http://pyyaml.org/wiki/PyYAMLDocumentation).
3838

39-
- Discuss PyYAML with the maintainers in IRC #pyyaml irc.freenode.net.
39+
* Discuss PyYAML with the maintainers on
40+
Matrix at https://matrix.to/#/#pyyaml:yaml.io or
41+
IRC #pyyaml irc.libera.chat
4042

41-
- Submit bug reports and feature requests to the
43+
* Submit bug reports and feature requests to the
4244
[PyYAML bug tracker](https://github.com/yaml/pyyaml/issues).
4345

4446
## License

announcement.msg

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

55
=======================
6-
Announcing PyYAML-5.4.1
6+
Announcing PyYAML-6.0b1
77
=======================
88

9-
A new release of PyYAML is now available:
10-
https://github.com/yaml/pyyaml/releases/tag/5.4.1
9+
A new beta release of PyYAML is now available:
10+
https://github.com/yaml/pyyaml/releases/tag/6.0b1
1111

12-
This release contains a fix for AttributeError during module import in some
13-
mixed version installations.
12+
The previously-deprecated default loader selection in `yaml.load()` has
13+
been removed; `Loader` is now a required argument.
1414

15-
PyYAML 5.4.1 will be the last release to support Python 2.7 (except for possible
16-
critical bug fix releases).
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.
1720

1821

1922
Changes
2023
=======
2124

22-
* https://github.com/yaml/pyyaml/pull/480 -- Fix stub compat with older pyyaml versions that may unwittingly load it
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
2335

2436

2537
Resources
2638
=========
2739

28-
PyYAML IRC Channel: #pyyaml on irc.freenode.net
40+
PyYAML Matrix: https://matrix.to/#/#pyyaml:yaml.io
41+
PyYAML IRC Channel: #pyyaml on irc.libera.chat
2942
PyYAML homepage: https://github.com/yaml/pyyaml
3043
PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
3144
Source and binary installers: https://pypi.org/project/PyYAML/
@@ -83,7 +96,7 @@ The following people are currently responsible for maintaining PyYAML:
8396
* Ingy döt Net
8497
* Matt Davis
8598

86-
and many thanks to all who have contribributed!
99+
and many thanks to all who have contributed!
87100
See: https://github.com/yaml/pyyaml/pulls
88101

89102

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__ = '5.4.1'
11+
__version__ = '6.0b1'
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 = '5.4.1'
3+
VERSION = '6.0b1'
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)