Skip to content

Commit c2a82a5

Browse files
author
Cameron Lamb
committed
Add missing migration and bump version to 0.4.6
1 parent e1efbbe commit c2a82a5

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Generated by Django 2.2.3 on 2019-11-07 11:50
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
initial = True
9+
10+
dependencies = [
11+
('grapple', '0002_delete_pagepreview'),
12+
]
13+
14+
operations = [
15+
migrations.CreateModel(
16+
name='StubModel',
17+
fields=[
18+
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
19+
],
20+
options={
21+
'managed': False,
22+
},
23+
),
24+
]

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = wagtail-grapple
33
author = Nathan Horrigan
44
author_email = NathHorrigan@gmail.com
55
description = A django app that speeds up and simplifies implementing a GraphQL endoint!
6-
version = 0.4.5
6+
version = 0.4.6
77
url = https://github.com/torchbox/wagtail-grapple
88
keywords =
99
wagtail

0 commit comments

Comments
 (0)