File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.0a1
2+ current_version = 1.0a2
33commit = True
44tag = False
55parse = (?P<major>\d+)\.(?P<minor>\d+)((\.(?P<patch>\d+))|((?P<level>(a|b|rc|final))(?P<prerelease>\d+)))
Original file line number Diff line number Diff line change @@ -10,15 +10,20 @@ Next Release
10101.0.0
1111-----
1212
13+ - Fix issue `#49 `_: allow form classes to be imported without requiring
14+ project to be in ``INSTALLED_APPS `` (See `#36 `_ and `#46 `_ below for
15+ associated error and reasoning) (`#50 `_)
1316- Fix issue `#36 `_: refactor package to allow for mix-in classes to be
1417 imported into third-party project without requiring project to be in
1518 ``INSTALLED_APPS `` (which would unnecessarily create unused tables in
1619 the project). Add documentation/tutorial on subject. (`#46 `_)
1720- Prepare for Django 2.0 by testing against Django 2.0 alpha. (`#43 `_)
1821
22+ .. _#36 : https://github.com/jambonsw/django-improved-user/issues/36
1923.. _#43 : https://github.com/jambonsw/django-improved-user/pull/43
2024.. _#46 : https://github.com/jambonsw/django-improved-user/pull/46
21- .. _#36 : https://github.com/jambonsw/django-improved-user/issues/36
25+ .. _#49 : https://github.com/jambonsw/django-improved-user/issues/49
26+ .. _#50 : https://github.com/jambonsw/django-improved-user/pull/50
2227
2328
24290.5.3 (2017-08-29)
Original file line number Diff line number Diff line change 11# https://www.appveyor.com/docs/appveyor-yml/
2- version : ' {branch}-v1.0a1 -{build}'
2+ version : ' {branch}-v1.0a2 -{build}'
33branches :
44 only :
55 - development
Original file line number Diff line number Diff line change 11Django>=1.11,<2.0
22factory_boy==2.9.2
3- Faker==0.8.4
3+ Faker==0.8.5
44Pygments==2.2.0
55python-dateutil==2.6.1
66sphinx-rtd-theme==0.2.4
Original file line number Diff line number Diff line change @@ -166,9 +166,9 @@ def setup(app):
166166# built documents.
167167#
168168# The short X.Y version.
169- version = '1.0a1 '
169+ version = '1.0a2 '
170170# The full version, including alpha/beta/rc tags.
171- release = '1.0a1 '
171+ release = '1.0a2 '
172172
173173# The language for content autogenerated by Sphinx. Refer to documentation
174174# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ check-manifest==0.35
33coverage == 4.4.1
44docutils == 0.14
55factory_boy == 2.9.2
6- Faker == 0.8.4
6+ Faker == 0.8.5
77flake8-commas == 0.4.3
88flake8-quotes == 0.11.0
99flake8 == 3.4.1
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ def run_tests(self):
139139
140140setup (
141141 name = 'django-improved-user' ,
142- version = '1.0a1 ' ,
142+ version = '1.0a2 ' ,
143143 description = (
144144 'A custom Django user model for best practices email-based login.'
145145 ),
@@ -154,7 +154,7 @@ def run_tests(self):
154154 extras_require = {
155155 'factory' : [
156156 'factory_boy==2.9.2' ,
157- 'Faker==0.8.4 ' ,
157+ 'Faker==0.8.5 ' ,
158158 'python-dateutil==2.6.1' ,
159159 ],
160160 },
You can’t perform that action at this time.
0 commit comments