diff --git a/HISTORY.rst b/HISTORY.rst index cd2e242..ad9df71 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,19 @@ History ******* +1.0.0 (2024-04-09) +================== + +Features +-------- + +* Introduced Django 4.2 support. +* Dropped Support for Django < 3.1 +* Dropped Support for Python 3.7, 3.8 +* Added support for Python 3.10, 3.11 +* moved to `FidelityInternational/djangocms-multisite` as the new repository +* renamed to `djangocms-multisite-fil` + .. towncrier release notes start 0.3.1 (2020-07-06) diff --git a/MANIFEST.in b/MANIFEST.in index e16a729..3991e4b 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,9 @@ include AUTHORS.rst +include Makefile include CONTRIBUTING.rst include HISTORY.rst include LICENSE include README.rst -include Makefile recursive-include djangocms_multisite *.html *.png *.gif *js *jpg *jpeg *svg *py *css *po *mo + +recursive-exclude * *.pyc diff --git a/addon.json b/addon.json new file mode 100644 index 0000000..330ba7a --- /dev/null +++ b/addon.json @@ -0,0 +1,4 @@ +{ + "package-name": "djangocms-multisite-fil", + "installed-apps": ["djangocms_multisite"] +} diff --git a/djangocms_multisite/__init__.py b/djangocms_multisite/__init__.py index 260c070..5becc17 100644 --- a/djangocms_multisite/__init__.py +++ b/djangocms_multisite/__init__.py @@ -1 +1 @@ -__version__ = "0.3.1" +__version__ = "1.0.0" diff --git a/setup.cfg b/setup.cfg index 7f247c9..fd376d1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -name = djangocms-multisite +name = djangocms-multisite-fil version = attr: djangocms_multisite.__version__ url = https://github.com/nephila/djangocms-multisite author = Iacopo Spalletti @@ -28,7 +28,7 @@ classifiers = [options] include_package_data = True install_requires = - django-multisite + django-multisite-fil @ https://github.com/FidelityInternational/django-multisite/tarball/release/1.10.0 django-cms setup_requires = setuptools diff --git a/tox.ini b/tox.ini index 2f98c2c..d634aa9 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ deps = django42: Django~=4.2.0 cms40: https://github.com/django-cms/django-cms/archive/release/4.0.1.x.tar.gz djangocms-text-ckeditor>=4 - https://github.com/FidelityInternational/django-multisite/archive/feat/django-42-compat.tar.gz + https://github.com/FidelityInternational/django-multisite/archive/master.tar.gz -r{toxinidir}/requirements-test.txt passenv = COMMAND