Skip to content

Commit

Permalink
6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nitzmahone committed Oct 13, 2021
1 parent a4fb55e commit 8cdff2c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ For a complete changelog, see:
* https://github.com/yaml/pyyaml/commits/
* https://bitbucket.org/xi/pyyaml/commits/

6.0b1 (2021-10-04)
6.0 (2021-10-13)

* https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown
* https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types
Expand Down
12 changes: 6 additions & 6 deletions announcement.msg
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
From: Ingy döt Net <ingy@ingy.net>
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
Subject: [ANN] PyYAML-6.0b1 Released
Subject: [ANN] PyYAML-6.0 Released

=======================
Announcing PyYAML-6.0b1
=======================
=====================
Announcing PyYAML-6.0
=====================

A new beta release of PyYAML is now available:
https://github.com/yaml/pyyaml/releases/tag/6.0b1
A new release of PyYAML is now available:
https://github.com/yaml/pyyaml/releases/tag/6.0

The previously-deprecated default loader selection in `yaml.load()` has
been removed; `Loader` is now a required argument.
Expand Down
2 changes: 1 addition & 1 deletion lib/yaml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .loader import *
from .dumper import *

__version__ = '6.0b1'
__version__ = '6.0'
try:
from .cyaml import *
__with_libyaml__ = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

NAME = 'PyYAML'
VERSION = '6.0b1'
VERSION = '6.0'
DESCRIPTION = "YAML parser and emitter for Python"
LONG_DESCRIPTION = """\
YAML is a data serialization format designed for human readability
Expand Down

0 comments on commit 8cdff2c

Please sign in to comment.