From 86b344933678c7f270a4b96179377c91c7f3c804 Mon Sep 17 00:00:00 2001 From: Brittney Exline Date: Fri, 3 Mar 2017 16:36:34 -0500 Subject: [PATCH] ENT-191 Adding all integrated channels files to be included in MANIFEST.in This file controls what gets pulled down from the package, and we were missing our migration files for the new apps, which was causing some mild mayhem. --- CHANGELOG.rst | 5 +++++ MANIFEST.in | 1 + enterprise/__init__.py | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ba1b3bf974..f490e90c32 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,11 @@ Change Log Unreleased ---------- +[0.26.3] - 2017-03-02 +--------------------- + +* Added integrated_channels to MANIFEST.in to properly include migrations for the new packages. + [0.26.2] - 2017-03-02 --------------------- diff --git a/MANIFEST.in b/MANIFEST.in index 206239eb30..945de8ae85 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -4,3 +4,4 @@ include CONTRIBUTING.rst include LICENSE.txt include README.rst recursive-include enterprise *.html *.png *.gif *js *.css *jpg *jpeg *svg *py *.txt +recursive-include integrated_channels *.html *.png *.gif *js *.css *jpg *jpeg *svg *py *.txt diff --git a/enterprise/__init__.py b/enterprise/__init__.py index 1c72e2e5ef..ab27b19864 100644 --- a/enterprise/__init__.py +++ b/enterprise/__init__.py @@ -4,6 +4,6 @@ from __future__ import absolute_import, unicode_literals -__version__ = "0.26.2" +__version__ = "0.26.3" default_app_config = "enterprise.apps.EnterpriseConfig" # pylint: disable=invalid-name