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