diff options
| author | Chris McDonough <chrism@plope.com> | 2011-09-08 17:45:20 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-09-08 17:45:20 -0400 |
| commit | a66ae929a79a54f95a3786d9b95393a4fb8a8fc4 (patch) | |
| tree | b8279c48da395dfb37b6d14b034c7efc50677ff9 | |
| parent | 0113baa0d60ada25b51d9425678da1e902f50fb4 (diff) | |
| download | pyramid-a66ae929a79a54f95a3786d9b95393a4fb8a8fc4.tar.gz pyramid-a66ae929a79a54f95a3786d9b95393a4fb8a8fc4.tar.bz2 pyramid-a66ae929a79a54f95a3786d9b95393a4fb8a8fc4.zip | |
Prep for 1.2b2; Closes #267
| -rw-r--r-- | CHANGES.txt | 18 | ||||
| -rw-r--r-- | docs/conf.py | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
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 @@ -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, |
