Skip to content

Commit

Permalink
Merge pull request #1035 from digitalocean/develop
Browse files Browse the repository at this point in the history
Release v1.9.4-r1
  • Loading branch information
jeremystretch authored Apr 4, 2017
2 parents 3ffe36e + a18e1a0 commit f89d917
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions netbox/extras/migrations/0005_useraction_add_bulk_create.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11 on 2017-04-04 19:45
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('extras', '0004_topologymap_change_comma_to_semicolon'),
]

operations = [
migrations.AlterField(
model_name='useraction',
name='action',
field=models.PositiveSmallIntegerField(choices=[(1, b'created'), (7, b'bulk created'), (2, b'imported'), (3, b'modified'), (4, b'bulk edited'), (5, b'deleted'), (6, b'bulk deleted')]),
),
]
2 changes: 1 addition & 1 deletion netbox/netbox/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"the documentation.")


VERSION = '1.9.4'
VERSION = '1.9.4-r1'

# Import local configuration
for setting in ['ALLOWED_HOSTS', 'DATABASE', 'SECRET_KEY']:
Expand Down

0 comments on commit f89d917

Please sign in to comment.