Skip to content

Commit 8cdff2c

Browse files
committed
6.0 release
1 parent a4fb55e commit 8cdff2c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGES

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ 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)
7+
6.0 (2021-10-13)
88

99
* https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown
1010
* https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types

announcement.msg

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
From: Ingy döt Net <ingy@ingy.net>
22
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
44

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

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
1111

1212
The previously-deprecated default loader selection in `yaml.load()` has
1313
been removed; `Loader` is now a required argument.

lib/yaml/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .loader import *
99
from .dumper import *
1010

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
NAME = 'PyYAML'
3-
VERSION = '6.0b1'
3+
VERSION = '6.0'
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)