Skip to content

Commit

Permalink
Updates for 5.1b7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Mar 8, 2019
1 parent 6c78681 commit 38cb7e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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/

5.1 (2019-02-24)
5.1b7 (2019-03-08)
----------------

* https://github.com/yaml/pyyaml/pull/35 -- Some modernization of the test running
Expand Down
2 changes: 1 addition & 1 deletion announcement.msg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourcefo
Subject: [ANN] PyYAML-5.1: YAML parser and emitter for Python

=======================
Announcing PyYAML-5.1
Announcing PyYAML-5.1b7 (Second beta release)
=======================

A new MAJOR RELEASE of PyYAML is now available:
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__ = '5.1'
__version__ = '5.1b7'

try:
from cyaml import *
Expand Down
2 changes: 1 addition & 1 deletion lib3/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__ = '5.1'
__version__ = '5.1b7'
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 = '5.1'
VERSION = '5.1b7'
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 38cb7e2

Please sign in to comment.