mirror of
https://github.com/yaml/pyyaml.git
synced 2025-10-19 19:13:19 +00:00
5.4.1 release
This commit is contained in:
parent
2b37f155d4
commit
ee37f4653c
5 changed files with 16 additions and 21 deletions
4
CHANGES
4
CHANGES
|
@ -4,6 +4,10 @@ For a complete changelog, see:
|
||||||
* https://github.com/yaml/pyyaml/commits/
|
* https://github.com/yaml/pyyaml/commits/
|
||||||
* https://bitbucket.org/xi/pyyaml/commits/
|
* https://bitbucket.org/xi/pyyaml/commits/
|
||||||
|
|
||||||
|
5.4.1 (2021-01-20)
|
||||||
|
|
||||||
|
* https://github.com/yaml/pyyaml/pull/480 -- Fix stub compat with older pyyaml versions that may unwittingly load it
|
||||||
|
|
||||||
5.4 (2021-01-19)
|
5.4 (2021-01-19)
|
||||||
|
|
||||||
* https://github.com/yaml/pyyaml/pull/407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA
|
* https://github.com/yaml/pyyaml/pull/407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA
|
||||||
|
|
|
@ -1,34 +1,25 @@
|
||||||
From: Ingy döt Net <ingy@ingy.net>
|
From: Ingy döt Net <ingy@ingy.net>
|
||||||
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
|
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
|
||||||
Subject: [ANN] PyYAML-5.4 Released
|
Subject: [ANN] PyYAML-5.4.1 Released
|
||||||
|
|
||||||
=====================
|
=======================
|
||||||
Announcing PyYAML-5.4
|
Announcing PyYAML-5.4.1
|
||||||
=====================
|
=======================
|
||||||
|
|
||||||
A new release of PyYAML is now available:
|
A new release of PyYAML is now available:
|
||||||
https://github.com/yaml/pyyaml/releases/tag/5.4
|
https://github.com/yaml/pyyaml/releases/tag/5.4.1
|
||||||
|
|
||||||
This release contains a security fix for CVE-2020-14343. It removes the
|
This release contains a fix for AttributeError during module import in some
|
||||||
python/module, python/object, and python/object/new tags from the FullLoader.
|
mixed version installations.
|
||||||
YAML that uses these tags must be loaded by UnsafeLoader, or a custom loader
|
|
||||||
that has explicitly enabled them.
|
|
||||||
|
|
||||||
This release also adds Python wheels for manylinux1 (x86_64) and MacOS (x86_64)
|
PyYAML 5.4.1 will be the last release to support Python 2.7 (except for possible
|
||||||
with the libyaml extension included (built on libyaml 0.2.5).
|
|
||||||
|
|
||||||
PyYAML 5.4 will be the last release to support Python 2.7 (except for possible
|
|
||||||
critical bug fix releases).
|
critical bug fix releases).
|
||||||
|
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
* https://github.com/yaml/pyyaml/pull/407 -- build modernization, remove distutils, fix metadata, build wheels, CI to GHA
|
* https://github.com/yaml/pyyaml/pull/480 -- Fix stub compat with older pyyaml versions that may unwittingly load it
|
||||||
* https://github.com/yaml/pyyaml/pull/472 -- fix for CVE-2020-14343, moves arbitrary python tags to UnsafeLoader
|
|
||||||
* https://github.com/yaml/pyyaml/pull/441 -- fix memory leak in implicit resolver setup
|
|
||||||
* https://github.com/yaml/pyyaml/pull/392 -- fix py2 copy support for timezone objects
|
|
||||||
* https://github.com/yaml/pyyaml/pull/378 -- fix compatibility with Jython
|
|
||||||
|
|
||||||
|
|
||||||
Resources
|
Resources
|
||||||
|
|
|
@ -8,7 +8,7 @@ from nodes import *
|
||||||
from loader import *
|
from loader import *
|
||||||
from dumper import *
|
from dumper import *
|
||||||
|
|
||||||
__version__ = '5.4'
|
__version__ = '5.4.1'
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from cyaml import *
|
from cyaml import *
|
||||||
|
|
|
@ -8,7 +8,7 @@ from .nodes import *
|
||||||
from .loader import *
|
from .loader import *
|
||||||
from .dumper import *
|
from .dumper import *
|
||||||
|
|
||||||
__version__ = '5.4'
|
__version__ = '5.4.1'
|
||||||
try:
|
try:
|
||||||
from .cyaml import *
|
from .cyaml import *
|
||||||
__with_libyaml__ = True
|
__with_libyaml__ = True
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
NAME = 'PyYAML'
|
NAME = 'PyYAML'
|
||||||
VERSION = '5.4'
|
VERSION = '5.4.1'
|
||||||
DESCRIPTION = "YAML parser and emitter for Python"
|
DESCRIPTION = "YAML parser and emitter for Python"
|
||||||
LONG_DESCRIPTION = """\
|
LONG_DESCRIPTION = """\
|
||||||
YAML is a data serialization format designed for human readability
|
YAML is a data serialization format designed for human readability
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue