Skip to content

Commit

Permalink
prep for 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdonc committed Oct 25, 2011
1 parent 1e736b0 commit 9f9f4f0
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,4 @@ dist
data
build
docs/output
docs/_themes
docs/_build
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "docs/_themes"]
path = docs/_themes
url = git://github.com/Pylons/pylons_sphinx_theme.git
4 changes: 2 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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``.
Expand Down
3 changes: 2 additions & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

1 change: 1 addition & 0 deletions docs/_themes
Submodule _themes added at 03e5e5
6 changes: 5 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

setup(
name='pyramid_mailer',
version='0.4.1',
version='0.5',
license='BSD',
author='Dan Jacob',
author_email='[email protected]',
Expand Down

0 comments on commit 9f9f4f0

Please sign in to comment.