Skip to content
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
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
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
Changelog
=========

5.0.0 (2022-03-22)
5.0.1 (2022-03-24)
==================

* Generated new static bundle.

5.0.0 (2022-03-24)
==================

* Drop support for Python 3.5 and 3.6
Expand Down
21 changes: 11 additions & 10 deletions djangocms_text_ckeditor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@

Release logic:
1. Increase version number (change __version__ below).
2. Assure that all changes have been documented in CHANGELOG.rst.
3. In setup.py check that
2. Ensure the static bundle is upto date with ``nvm use && gulp bundle``
3. Assure that all changes have been documented in CHANGELOG.rst.
4. In setup.py check that
- versions from all third party packages are pinned in ``REQUIREMENTS``.
- the list of ``CLASSIFIERS`` is up to date.
4. git add djangocms_text_ckeditor/__init__.py CHANGELOG.rst setup.py
5. git commit -m 'Bump to {new version}'
6. git push
7. Assure that all tests pass on https://github.com/django-cms/djangocms-text-ckeditor/actions
8. Create a new release on https://github.com/django-cms/djangocms-text-ckeditor/releases/new
9. Publish the release when ready
10. Github actions will publish the new package to pypi
5. git add djangocms_text_ckeditor/__init__.py CHANGELOG.rst setup.py
6. git commit -m 'Bump to {new version}'
7. git push
8. Assure that all tests pass on https://github.com/django-cms/djangocms-text-ckeditor/actions
9. Create a new release on https://github.com/django-cms/djangocms-text-ckeditor/releases/new
10. Publish the release when ready
11. Github actions will publish the new package to pypi
"""
__version__ = '5.0.0'
__version__ = '5.0.1'

default_app_config = 'djangocms_text_ckeditor.apps.TextCkeditorConfig'
Loading