Skip to content

Commit

Permalink
Merge branch 'release/0.2.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Nov 12, 2018
2 parents 72865ab + bd26c15 commit 9ddabef
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.7
0.2.8
19 changes: 19 additions & 0 deletions edc_offstudy/migrations/0003_auto_20181108_0353.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 2.1.2 on 2018-11-08 01:53

from django.db import migrations, models
import uuid


class Migration(migrations.Migration):

dependencies = [
('edc_offstudy', '0002_auto_20180921_0434'),
]

operations = [
migrations.AlterField(
model_name='historicalsubjectoffstudy',
name='history_id',
field=models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False),
),
]
2 changes: 1 addition & 1 deletion edc_offstudy/tests/test_offstudy.py
Original file line number Diff line number Diff line change
Expand Up @@ -686,4 +686,4 @@ def test_crf_model_mixin_for_visit_schedule_2(self):
subject_identifier=self.subject_identifier).order_by('appt_datetime')]
# note deletes appointments AFTER the date
# see edc_appointment for setting
self.assertEqual(appointments, ['1000', '2000', '5000'])
self.assertEqual(appointments, ['1000', '2000'])

0 comments on commit 9ddabef

Please sign in to comment.