summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-12-09 15:04:49 -0500
committerChris McDonough <chrism@plope.com>2011-12-09 15:04:49 -0500
commit5f1cf3fbc519085b93fb16a230c0637050ce350d (patch)
tree86dab4f48e8407c92b4640e8e3c8cbb4b9aa888d
parentd214e4d9fd2ad8220c15453b2d8ea04e5c9808f4 (diff)
downloadpyramid-5f1cf3fbc519085b93fb16a230c0637050ce350d.tar.gz
pyramid-5f1cf3fbc519085b93fb16a230c0637050ce350d.tar.bz2
pyramid-5f1cf3fbc519085b93fb16a230c0637050ce350d.zip
prep for 1.3a1
-rw-r--r--CHANGES.txt4
-rw-r--r--docs/conf.py6
-rw-r--r--setup.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4be846ece..9cdaac5be 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,5 +1,5 @@
-Next release
-============
+1.3a1 (2011-12-09)
+==================
Features
--------
diff --git a/docs/conf.py b/docs/conf.py
index d55f14845..f913b2462 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -80,7 +80,7 @@ copyright = '%s, Agendaless Consulting' % datetime.datetime.now().year
# other places throughout the built documents.
#
# The short X.Y version.
-version = '1.3dev'
+version = '1.3a1'
# The full version, including alpha/beta/rc tags.
release = version
@@ -475,7 +475,7 @@ def resig(app, what, name, obj, options, signature, return_annotation):
# -- Options for Epub output ---------------------------------------------------
# Bibliographic Dublin Core info.
-epub_title = 'The Pyramid Web Application Development Framework, Version 1.3dev'
+epub_title = 'The Pyramid Web Application Development Framework, Version 1.3'
epub_author = 'Chris McDonough'
epub_publisher = 'Agendaless Consulting'
epub_copyright = '2008-2011'
@@ -492,7 +492,7 @@ epub_scheme = 'ISBN'
epub_identifier = '0615445675'
# A unique identification for the text.
-epub_uid = 'The Pyramid Web Application Development Framework, Version 1.3dev'
+epub_uid = 'The Pyramid Web Application Development Framework, Version 1.3'
# HTML files that should be inserted before the pages created by sphinx.
# The format is a list of tuples containing the path and title.
diff --git a/setup.py b/setup.py
index 4d3216e12..a09461303 100644
--- a/setup.py
+++ b/setup.py
@@ -56,7 +56,7 @@ if not PY3:
])
setup(name='pyramid',
- version='1.3dev',
+ version='1.3a1',
description=('The Pyramid web application development framework, a '
'Pylons project'),
long_description=README + '\n\n' + CHANGES,