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

chore: Prepare 2.0.1 release #231

Merged
merged 1 commit into from
Mar 27, 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
19 changes: 17 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,23 @@
Changelog
=========

2.0.0rc3 (2023-12-12)
=====================
2.0.1 (2024-03-27)
==================

* fix: Remove newline from alias template by @fsbraun in https://github.com/django-cms/djangocms-alias/pull/220
* fix Sync pre-commit checks (#216) by @raffaellasuardini in https://github.com/django-cms/djangocms-alias/pull/226
* fix: Remove `get_absolute_url` from both `Alias` and `AliasContent` models by @fsbraun in https://github.com/django-cms/djangocms-alias/pull/199
* fix djangocms-versioning draft deletion bug (#214) by @fscherf in https://github.com/django-cms/djangocms-alias/pull/215

Contributors

* @aacimov made their first contribution in https://github.com/django-cms/djangocms-alias/pull/213
* @raffaellasuardini made their first contribution in https://github.com/django-cms/djangocms-alias/pull/217
* @fscherf made their first contribution in https://github.com/django-cms/djangocms-alias/pull/215


2.0.0 (2023-12-12)
==================
* fix: avoid generating migrations based on settings.LANGUAGE by @vasekch in https://github.com/django-cms/djangocms-alias/pull/186
* fix: Enable caching for `static_alias` template tag by @vasekch in https://github.com/django-cms/djangocms-alias/pull/200
* fix: `static_alias` unnecessarily creates new content objects when used with versioning by @fsbraun in https://github.com/django-cms/djangocms-alias/pull/202
Expand Down
2 changes: 1 addition & 1 deletion djangocms_alias/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{% load djangocms_alias_tags %}<b>{{ alias_static_code }}</b>{% render_alias instance.alias %}
Loading