diff --git a/edxval/migrations/0015_remove_thirdpartytranscriptcredentialsstate_exists.py b/edxval/migrations/0015_remove_thirdpartytranscriptcredentialsstate_exists.py new file mode 100644 index 00000000..4832c27e --- /dev/null +++ b/edxval/migrations/0015_remove_thirdpartytranscriptcredentialsstate_exists.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.25 on 2019-12-06 21:18 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('edxval', '0014_transcript_credentials_state_retype_exists'), + ] + + operations = [ + migrations.RemoveField( + model_name='thirdpartytranscriptcredentialsstate', + name='exists', + ), + ] diff --git a/setup.py b/setup.py index 3672f451..419eaa82 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def load_requirements(*requirements_paths): return list(requirements) -VERSION = '1.2.1' +VERSION = '1.2.2' if sys.argv[-1] == 'tag': print("Tagging the version on github:")