Skip to content

Commit

Permalink
Add migration to remove 'exists'. (#199)
Browse files Browse the repository at this point in the history
Update version to 1.2.2.
  • Loading branch information
brianhw authored Jan 22, 2020
1 parent 3bd20f5 commit 4e7c4f4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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',
),
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:")
Expand Down

0 comments on commit 4e7c4f4

Please sign in to comment.