summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/conf.py2
-rw-r--r--docs/news.txt6
-rw-r--r--setup.py2
3 files changed, 6 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 1fbc70b..4bb0424 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -40,7 +40,7 @@ copyright = '2008, Ian Bicking'
# other places throughout the built documents.
#
# The short X.Y version.
-version = '1.2.2'
+version = '1.2.3'
# The full version, including alpha/beta/rc tags.
release = '1.2'
diff --git a/docs/news.txt b/docs/news.txt
index a27d300..c5c44bd 100644
--- a/docs/news.txt
+++ b/docs/news.txt
@@ -1,14 +1,16 @@
News
====
-hg tip
-------
+1.2.3
+-----
* Fix `#10
<http://bitbucket.org/ianb/webtest/issue/10/testapprequest-method-overwrites-specifics-with-testapp-scoped>`_,
now `TestApp.extra_environ` doesn't take precedence over a WSGI
environment passed in through the request.
+* Removed stray print
+
1.2.2
-----
diff --git a/setup.py b/setup.py
index a49eeca..63b31a7 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import sys, os
-version = '1.2.2'
+version = '1.2.3'
setup(name='WebTest',
version=version,