From 74f711c3250ed0bb5b6567dac56b198bf5c53069 Mon Sep 17 00:00:00 2001 From: Mathieu Leplatre Date: Fri, 28 Oct 2016 11:54:11 +0200 Subject: [PATCH] Preparing release 2.1.0 --- CHANGES.txt | 14 ++++++++------ docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 11 insertions(+), 9 deletions(-) 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',