From 9f9f4f0dc1f317953d88405074c4cf16b558dcf0 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 24 Oct 2011 20:31:36 -0400 Subject: [PATCH] prep for 0.5 --- .gitignore | 1 - .gitmodules | 3 +++ CHANGES.txt | 4 ++-- docs/Makefile | 3 ++- docs/_themes | 1 + docs/conf.py | 6 +++++- setup.py | 2 +- 7 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 .gitmodules create mode 160000 docs/_themes diff --git a/.gitignore b/.gitignore index 46541c6..222930b 100644 --- a/.gitignore +++ b/.gitignore @@ -15,5 +15,4 @@ dist data build docs/output -docs/_themes docs/_build diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..4539794 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "docs/_themes"] + path = docs/_themes + url = git://github.com/Pylons/pylons_sphinx_theme.git diff --git a/CHANGES.txt b/CHANGES.txt index 89b98c9..249cb84 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -Next release ------------- +0.5 (2011-10-24) +---------------- - Drop Lamson dependency by copying Lamson's MailResponse and dependent code into ``pyramid_mailer.response``. diff --git a/docs/Makefile b/docs/Makefile index 3d706d1..323b95a 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -85,4 +85,5 @@ epub: @echo "Build finished. The epub file is in _build/epub." _themes: - git clone git://github.com/Pylons/pylons_sphinx_theme.git _themes + cd ..; git submodule update --init; cd docs + diff --git a/docs/_themes b/docs/_themes new file mode 160000 index 0000000..03e5e5a --- /dev/null +++ b/docs/_themes @@ -0,0 +1 @@ +Subproject commit 03e5e5aaaeddc4c9aea887478c7e7b379a127b6f diff --git a/docs/conf.py b/docs/conf.py index d515bc6..b3acff8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -76,7 +76,7 @@ def nothing(*arg): # other places throughout the built documents. # # The short X.Y version. -version = '0.4' +version = '0.5' # The full version, including alpha/beta/rc tags. release = version @@ -93,6 +93,9 @@ def nothing(*arg): # for source files. #exclude_dirs = [] +# directories to ignore when looking for source files. +exclude_patterns = ['_themes/README.rst',] + # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None @@ -122,6 +125,7 @@ def nothing(*arg): sys.path.append(os.path.abspath('_themes')) html_theme_path = ['_themes'] html_theme = 'pyramid' +html_theme_options = dict(github_url='http://github.com/Pylons/pyramid_mailer') # The style sheet to use for HTML and HTML Help pages. A file of that name # must exist either in Sphinx' static/ path, or in one of the custom paths diff --git a/setup.py b/setup.py index d69ebbe..975686f 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name='pyramid_mailer', - version='0.4.1', + version='0.5', license='BSD', author='Dan Jacob', author_email='danjac354@gmail.com',