summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-09-08 17:45:20 -0400
committerChris McDonough <chrism@plope.com>2011-09-08 17:45:20 -0400
commita66ae929a79a54f95a3786d9b95393a4fb8a8fc4 (patch)
treeb8279c48da395dfb37b6d14b034c7efc50677ff9
parent0113baa0d60ada25b51d9425678da1e902f50fb4 (diff)
downloadpyramid-a66ae929a79a54f95a3786d9b95393a4fb8a8fc4.tar.gz
pyramid-a66ae929a79a54f95a3786d9b95393a4fb8a8fc4.tar.bz2
pyramid-a66ae929a79a54f95a3786d9b95393a4fb8a8fc4.zip
Prep for 1.2b2; Closes #267
-rw-r--r--CHANGES.txt18
-rw-r--r--docs/conf.py2
-rw-r--r--setup.py2
3 files changed, 20 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f7650f273..c62f0a34b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,21 @@
+1.2b2 (2011-09-08)
+==================
+
+Bug Fixes
+---------
+
+- The 1.2b1 tarball was a brownbag (particularly for Windows users) because
+ it contained filenames with stray quotation marks in inappropriate places.
+ We depend on ``setuptools-git`` to produce release tarballs, and when it
+ was run to produce the 1.2b1 tarball, it didn't yet cope well with files
+ present in git repositories with high-order characters in their filenames.
+
+Documentation
+-------------
+
+- Minor tweaks to the "Introduction" narrative chapter example app and
+ wording.
+
1.2b1 (2011-09-08)
==================
diff --git a/docs/conf.py b/docs/conf.py
index cfbf6339f..4dad10a8c 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -93,7 +93,7 @@ copyright = '%s, Agendaless Consulting' % datetime.datetime.now().year
# other places throughout the built documents.
#
# The short X.Y version.
-version = '1.2b1'
+version = '1.2b2'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/setup.py b/setup.py
index 83e0a8c6b..3254a8bda 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@ if sys.version_info[:2] < (2, 6):
install_requires.append('simplejson')
setup(name='pyramid',
- version='1.2b1',
+ version='1.2b2',
description=('The Pyramid web application development framework, a '
'Pylons project'),
long_description=README + '\n\n' + CHANGES,