Skip to content

Commit

Permalink
Merge branch 'master' into fix/unnecessary-migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun authored Sep 20, 2023
2 parents e92c8e1 + ad2f0ab commit 3fb06f9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
args: ["--py38-plus"]

- repo: https://github.com/adamchainz/django-upgrade
rev: '1.14.0'
rev: '1.14.1'
hooks:
- id: django-upgrade
args: [--target-version, "3.2"]
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
Changelog
=========

Unreleased
==========
2.0.0rc2
========
* fix: Migration dependency on latest django-cms migration.
* fix: Allow using a variable as the identifier in static_alias template tag

2.0.0rc1
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.0rc1'
__version__ = '2.0.0rc2'
2 changes: 1 addition & 1 deletion djangocms_alias/migrations/0003_auto_20230725_1547.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('cms', '__latest__'),
('cms', '__first__'),
('djangocms_alias', '0002_auto_20200723_1424'),
]

Expand Down

0 comments on commit 3fb06f9

Please sign in to comment.