Skip to content

Commit

Permalink
Update version to 1.8.4 (#97)
Browse files Browse the repository at this point in the history
Added missing migration

Co-authored-by: Ryan P Skadberg <rskadberg@fshealth.com>
  • Loading branch information
skadz and fshskadz authored May 31, 2023
1 parent c2a5a80 commit f75c80a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion rest_framework_tracking/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.8.2"
__version__ = "1.8.4"
import django

if django.VERSION < (3, 2):
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.1 on 2023-05-31 19:14

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('rest_framework_tracking', '0012_auto_20210930_0713'),
]

operations = [
migrations.AddField(
model_name='apirequestlog',
name='user_agent',
field=models.CharField(blank=True, max_length=255),
),
]

0 comments on commit f75c80a

Please sign in to comment.