Bumped the version number.
diff --git a/CHANGES b/CHANGES
index 8bc18b2..938dc46 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 f977f46..76e19e1 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 0033d9c..a5e20f9 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 9e856bf..727c3e0 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