This commit is contained in:
James Socol 2015-05-08 16:05:56 -04:00
parent 57af78b8e0
commit 10c2e25de5
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2014, Jeff Balogh. Copyright (c) 2015, Jeff Balogh.
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, Redistribution and use in source and binary forms, with or without modification,

View File

@ -16,7 +16,7 @@ extensions = ['sphinx.ext.autodoc']
# General information about the project. # General information about the project.
project = u'Jingo' project = u'Jingo'
copyright = u'2010-2014, The Mozilla Foundation' copyright = u'2010-2015, The Mozilla Foundation'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the

View File

@ -15,7 +15,7 @@ from django.utils.importlib import import_module
import jinja2 import jinja2
VERSION = (0, 7, 0) VERSION = (0, 7, 1)
__version__ = '.'.join(map(str, VERSION)) __version__ = '.'.join(map(str, VERSION))
EXCLUDE_APPS = ( EXCLUDE_APPS = (

View File

@ -3,7 +3,7 @@ from setuptools import setup
setup( setup(
name='jingo', name='jingo',
version='0.7', version='0.7.1',
description='An adapter for using Jinja2 templates with Django.', description='An adapter for using Jinja2 templates with Django.',
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
author='Jeff Balogh', author='Jeff Balogh',