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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
From: Ingy döt Net <[email protected]>
22
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

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.0b1'
11+
__version__ = '6.0'
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.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)