Skip to content

Commit

Permalink
Migration adjustment (#106)
Browse files Browse the repository at this point in the history
* Bump celery from 4.2.1 to 5.2.2 in test requirements
* Adjust a migration to refer to jsonfield using correct v3.1+ nomenclature
  • Loading branch information
geophphrie authored Aug 7, 2023
1 parent 00b321b commit e91b4bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ambition_utils/docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Release Notes
=============

3.1.11
------
* migration adjustment

3.1.10
-----
* offset() does not consider timezone when reversing.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Generated by Django 3.2.19 on 2023-06-05 19:55

import django.contrib.postgres.fields.jsonb
from django.db import migrations
from django.db import migrations, models


class Migration(migrations.Migration):
Expand All @@ -14,6 +13,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='rrule',
name='rrule_exclusion_params',
field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=None, null=True),
field=models.JSONField(blank=True, default=None, null=True),
),
]
2 changes: 1 addition & 1 deletion ambition_utils/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '3.1.10'
__version__ = '3.1.11'
2 changes: 1 addition & 1 deletion requirements/requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
celery<5
celery>=5.2.2
coverage
coveralls
django-nose
Expand Down

0 comments on commit e91b4bf

Please sign in to comment.