diff --git a/LICENSE b/LICENSE index f4dcf7b..8e9309c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014, Jeff Balogh. +Copyright (c) 2015, Jeff Balogh. All rights reserved. Redistribution and use in source and binary forms, with or without modification, diff --git a/docs/conf.py b/docs/conf.py index 719c253..e7e72af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ extensions = ['sphinx.ext.autodoc'] # General information about the project. 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 # |version| and |release|, also used in various other places throughout the diff --git a/jingo/__init__.py b/jingo/__init__.py index ed8520d..e4011f8 100644 --- a/jingo/__init__.py +++ b/jingo/__init__.py @@ -15,7 +15,7 @@ from django.utils.importlib import import_module import jinja2 -VERSION = (0, 7, 0) +VERSION = (0, 7, 1) __version__ = '.'.join(map(str, VERSION)) EXCLUDE_APPS = ( diff --git a/setup.py b/setup.py index 6cb1c35..dd75ea7 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name='jingo', - version='0.7', + version='0.7.1', description='An adapter for using Jinja2 templates with Django.', long_description=open('README.rst').read(), author='Jeff Balogh',