diff --git a/CHANGES.txt b/CHANGES.txt index 2a5f6892..db6c6a9a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,12 +3,7 @@ CHANGELOG ######### -2.1.0 (unreleased) -================== - -- Nothing changed yet. - -2.0.3 (unreleased) +2.1.0 (2016-10-28) ================== **Enhancements** @@ -35,6 +30,13 @@ CHANGELOG nothing if ``schema`` is unset (or set to ``None``.) Previously (contrary to its docstring) it was raising a ``TypeError``. +**Internal changes** + +- Raised test coverage to 100% (#417) + +Huge thanks to @dairiki for his help on this release! + + 2.0.2 (2016-10-25) ================== diff --git a/docs/source/conf.py b/docs/source/conf.py index 6ac12a79..79bd2229 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -20,9 +20,9 @@ # built documents. # # The short X.Y version. -version = '2.0' +version = '2.1' # The full version, including alpha/beta/rc tags. -release = '2.0.2' +release = '2.1.0' exclude_patterns = [] diff --git a/setup.py b/setup.py index fe407b3d..80780076 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ package_data = {} setup(name='cornice', - version='2.1.0.dev0', + version='2.1.0', description='Define Web Services in Pyramid.', long_description=README + '\n\n' + CHANGES, license='MPLv2.0',