From f30c956c11aa6b5e7827fe5840cc9ed40b938d17 Mon Sep 17 00:00:00 2001 From: Kirill Simonov Date: Wed, 26 Mar 2014 19:34:36 -0500 Subject: [PATCH] Bumped the version number. --- CHANGES | 9 ++++++++- lib/yaml/__init__.py | 2 +- lib3/yaml/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 8bc18b27..938dc469 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,12 @@ -For a complete Subversion changelog, see 'http://pyyaml.org/log/pyyaml'. +For a complete Mercurial changelog, see +'https://bitbucket.org/xi/pyyaml/commits'. + +3.11 (2014-03-26) +----------------- + +* Source and binary distributions are rebuilt against the latest + versions of Cython and LibYAML. 3.10 (2011-05-30) ----------------- diff --git a/lib/yaml/__init__.py b/lib/yaml/__init__.py index f977f46b..76e19e13 100644 --- a/lib/yaml/__init__.py +++ b/lib/yaml/__init__.py @@ -8,7 +8,7 @@ from loader import * from dumper import * -__version__ = '3.10' +__version__ = '3.11' try: from cyaml import * diff --git a/lib3/yaml/__init__.py b/lib3/yaml/__init__.py index 0033d9ca..a5e20f94 100644 --- a/lib3/yaml/__init__.py +++ b/lib3/yaml/__init__.py @@ -8,7 +8,7 @@ from .loader import * from .dumper import * -__version__ = '3.10' +__version__ = '3.11' try: from .cyaml import * __with_libyaml__ = True diff --git a/setup.py b/setup.py index 9e856bf3..727c3e06 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ NAME = 'PyYAML' -VERSION = '3.10' +VERSION = '3.11' DESCRIPTION = "YAML parser and emitter for Python" LONG_DESCRIPTION = """\ YAML is a data serialization format designed for human readability