Skip to content

Commit

Permalink
1.1.1 - add migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Sep 5, 2016
1 parent 6380b52 commit 339a766
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
4 changes: 4 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.1.1

* added missing migrations from 1.1.0 changes

## 1.1.0

* added support for secondary images
Expand Down
26 changes: 26 additions & 0 deletions pinax/events/migrations/0004_auto_20160905_1144.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.1 on 2016-09-05 11:44
from __future__ import unicode_literals

from django.db import migrations, models
import pinax.events.models


class Migration(migrations.Migration):

dependencies = [
('pinax_events', '0003_event_url'),
]

operations = [
migrations.AddField(
model_name='event',
name='secondary_image',
field=models.ImageField(blank=True, upload_to=pinax.events.models.image_upload_to),
),
migrations.AlterField(
model_name='event',
name='image',
field=models.ImageField(blank=True, upload_to=pinax.events.models.image_upload_to),
),
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(*parts):
description="a simple app for publishing events on your site",
name="pinax-events",
long_description=read("README.rst"),
version="1.1.0",
version="1.1.1",
url="http://github.com/pinax/pinax-events/",
license="MIT",
packages=find_packages(),
Expand Down

0 comments on commit 339a766

Please sign in to comment.