Skip to content

Commit 377092f

Browse files
committed
Changes for 5.3
1 parent 69b025a commit 377092f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

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-
5.3b1 (2019-12-21)
7+
5.3 (2020-01-06)
88

99
* https://github.com/yaml/pyyaml/pull/290 -- Use `is` instead of equality for comparing with `None`
1010
* https://github.com/yaml/pyyaml/pull/270 -- fix typos and stylistic nit

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__ = '5.3b1'
11+
__version__ = '5.3'
1212

1313
try:
1414
from cyaml import *

lib3/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__ = '5.3b1'
11+
__version__ = '5.3'
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 = '5.3b1'
3+
VERSION = '5.3'
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)