diff --git a/broadcasts/__init__.py b/broadcasts/__init__.py
index afba3d4..46f10c6 100644
--- a/broadcasts/__init__.py
+++ b/broadcasts/__init__.py
@@ -5,7 +5,7 @@
"""
__version_info__ = {
'major': 0,
- 'minor': 9,
+ 'minor': 10,
'micro': 0,
'releaselevel': 'final',
'serial': 1
diff --git a/broadcasts/migrations/0003_auto_20190502_1228.py b/broadcasts/migrations/0003_auto_20190502_1228.py
new file mode 100644
index 0000000..f86f31c
--- /dev/null
+++ b/broadcasts/migrations/0003_auto_20190502_1228.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.17 on 2019-05-02 16:28
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('broadcasts', '0002_message_type'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='broadcastmessage',
+ name='url_target',
+ field=models.TextField(default=b'.*', help_text='Uses regular expressions to match target URLs.
\n .*
applies to entire site.
\n /path/to/this.html
matches that specific path.
\n /path/to/this.html|/or/to/this.html
matches either\n /path/to/this.html
OR /or/to/this.html
\n
/anything/under/.*
matches any path starting with\n /anything/under/
\n /anything/here/?
matches any path starting with\n /anything/here/
OR /anything/here
\n ("?" makes preceding character optional)', verbose_name='url target'),
+ ),
+ ]