From 802c04a116712d411bc20b031326cdeb119778aa Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Wed, 7 Sep 2016 20:18:30 +0200 Subject: [PATCH 1/2] Add templatetags to Pypi package --- CHANGELOG.rst | 8 ++++++++ setup.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 53ae2bd..a186a48 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file. .. contents:: Table of Contents :depth: 2 +Unreleased +========== + +Fixed +----- +* Add templatetags to Pypi package + + v0.7.3 - 2016-09-07 =================== diff --git a/setup.py b/setup.py index 0c0cfaa..148a11c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ if __name__ == '__main__': packages=[ 'cas_server', 'cas_server.migrations', 'cas_server.management', 'cas_server.management.commands', - 'cas_server.tests' + 'cas_server.tests', 'cas_server.templatetags' ], include_package_data=True, license='GPLv3', From 0b44ecf5e5bcc36f7b499937c5db6d64cd54e006 Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Wed, 7 Sep 2016 20:19:18 +0200 Subject: [PATCH 2/2] Update version to 0.7.4 --- CHANGELOG.rst | 4 ++-- cas_server/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a186a48..8f3f0d6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file. .. contents:: Table of Contents :depth: 2 -Unreleased -========== +v0.7.4 - 2016-09-07 +=================== Fixed ----- diff --git a/cas_server/__init__.py b/cas_server/__init__.py index 0ffa524..04751e8 100644 --- a/cas_server/__init__.py +++ b/cas_server/__init__.py @@ -11,7 +11,7 @@ """A django CAS server application""" #: version of the application -VERSION = '0.7.3' +VERSION = '0.7.4' #: path the the application configuration class default_app_config = 'cas_server.apps.CasAppConfig'