Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.0 version #2

Merged
merged 6 commits into from
May 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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
4 changes: 4 additions & 0 deletions addon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"package-name": "djangocms-multisite-fil",
"installed-apps": ["djangocms_multisite"]
}
2 changes: 1 addition & 1 deletion djangocms_multisite/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.1"
__version__ = "1.0.0"
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading