File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ For a complete changelog, see:
4
4
* https://github.com/yaml/pyyaml/commits/
5
5
* https://bitbucket.org/xi/pyyaml/commits/
6
6
7
- 6.0b1 (2021-10-04 )
7
+ 6.0 (2021-10-13 )
8
8
9
9
* https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown
10
10
* https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types
Original file line number Diff line number Diff line change 1
1
From: Ingy döt Net <ingy@ingy.net>
2
2
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
3
- Subject: [ANN] PyYAML-6.0b1 Released
3
+ Subject: [ANN] PyYAML-6.0 Released
4
4
5
- =======================
6
- Announcing PyYAML-6.0b1
7
- =======================
5
+ =====================
6
+ Announcing PyYAML-6.0
7
+ =====================
8
8
9
- A new beta release of PyYAML is now available:
10
- https://github.com/yaml/pyyaml/releases/tag/6.0b1
9
+ A new release of PyYAML is now available:
10
+ https://github.com/yaml/pyyaml/releases/tag/6.0
11
11
12
12
The previously-deprecated default loader selection in `yaml.load()` has
13
13
been removed; `Loader` is now a required argument.
Original file line number Diff line number Diff line change 8
8
from .loader import *
9
9
from .dumper import *
10
10
11
- __version__ = '6.0b1 '
11
+ __version__ = '6.0 '
12
12
try :
13
13
from .cyaml import *
14
14
__with_libyaml__ = True
Original file line number Diff line number Diff line change 1
1
2
2
NAME = 'PyYAML'
3
- VERSION = '6.0b1 '
3
+ VERSION = '6.0 '
4
4
DESCRIPTION = "YAML parser and emitter for Python"
5
5
LONG_DESCRIPTION = """\
6
6
YAML is a data serialization format designed for human readability
You can’t perform that action at this time.
0 commit comments