summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES4
-rw-r--r--LICENSE2
-rw-r--r--README.rst2
-rw-r--r--__init__.py5
4 files changed, 9 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 7cc5fd3..20eb679 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+[0, 15, 36]: 2018-02-07
+ - fix issue 187, incompatibility of C extension with 3.7 (reported by
+ Daniel Blanchard)
+
[0, 15, 35]: 2017-12-03
- allow ``None`` as stream when specifying ``transform`` parameters to
``YAML.dump()``.
diff --git a/LICENSE b/LICENSE
index aacc976..3fe0f5b 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
- Copyright (c) 2014-2017 Anthon van der Neut, Ruamel bvba
+ Copyright (c) 2014-2018 Anthon van der Neut, Ruamel bvba
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.rst b/README.rst
index 6f0aba1..dd24147 100644
--- a/README.rst
+++ b/README.rst
@@ -35,7 +35,7 @@ ChangeLog
.. should insert NEXT: at the beginning of line for next key (with empty line)
-NEXT:
+0.15.36 (2018-02-07):
- fix issue 187, incompatibility of C extension with 3.7 (reported by
Daniel Blanchard)
diff --git a/__init__.py b/__init__.py
index 7b190f3..96890a4 100644
--- a/__init__.py
+++ b/__init__.py
@@ -7,8 +7,8 @@ if False: # MYPY
_package_data = dict(
full_package_name='ruamel.yaml',
- version_info=(0, 15, 35),
- __version__='0.15.35',
+ version_info=(0, 15, 36),
+ __version__='0.15.36',
author='Anthon van der Neut',
author_email='a.van.der.neut@ruamel.eu',
description='ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order', # NOQA
@@ -35,6 +35,7 @@ _package_data = dict(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Jython',