From 10c2e25de524af701a597de82e53650ba48dd27e Mon Sep 17 00:00:00 2001 From: James Socol Date: Fri, 8 May 2015 16:05:56 -0400 Subject: [PATCH] v0.7.1 --- LICENSE | 2 +- docs/conf.py | 2 +- jingo/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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 @@ # 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 @@ 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 @@ 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',