Skip to content

Commit

Permalink
Merge 76b2fa9 into 3cbedf8
Browse files Browse the repository at this point in the history
  • Loading branch information
vittoriozamboni committed Jan 11, 2019
2 parents 3cbedf8 + 76b2fa9 commit 92aa1b6
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .coverage

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Changelog
=========
- 19-01-11 (0.6.2):
- Added migrations for expiration_date and verbose names
- 18-01-18 (0.6.1):
- Added support for Django 2

Expand Down
7 changes: 4 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

import sys
import os
from datetime import datetime

base_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '../../'))
sys.path.insert(1, base_path)
Expand Down Expand Up @@ -57,16 +58,16 @@

# General information about the project.
project = u'Django Groups Manager'
copyright = u'2014-2016, Vittorio Zamboni'
copyright = u'2014-%s, Vittorio Zamboni' % datetime.today().year

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.3'
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.3.0'
release = '0.6.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion groups_manager/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.6.1'
VERSION = '0.6.2'
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AlterField(
model_name='groupmember',
name='expiration_date',
field=models.DateTimeField(blank=True, default=None, null=True),
),
migrations.AlterField(
model_name='group',
name='codename',
Expand Down
20 changes: 0 additions & 20 deletions groups_manager/migrations/0005_auto_20181001_1009.py

This file was deleted.

8 changes: 8 additions & 0 deletions testproject/requirements-django-1.7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
awesome-slugify
django<1.8
django-braces<1.9
django-guardian<1.4
django-mptt<0.8
jsonfield<2

django-extensions<1.7

0 comments on commit 92aa1b6

Please sign in to comment.