Skip to content

Commit a4e42bf

Browse files
authored
Release 1.0a2 (#51)
* Update Faker to 0.8.5
1 parent 787b0fb commit a4e42bf

7 files changed

Lines changed: 14 additions & 9 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0a1
2+
current_version = 1.0a2
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)((\.(?P<patch>\d+))|((?P<level>(a|b|rc|final))(?P<prerelease>\d+)))

HISTORY.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,20 @@ Next Release
1010
1.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

2429
0.5.3 (2017-08-29)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# https://www.appveyor.com/docs/appveyor-yml/
2-
version: '{branch}-v1.0a1-{build}'
2+
version: '{branch}-v1.0a2-{build}'
33
branches:
44
only:
55
- development

doc-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Django>=1.11,<2.0
22
factory_boy==2.9.2
3-
Faker==0.8.4
3+
Faker==0.8.5
44
Pygments==2.2.0
55
python-dateutil==2.6.1
66
sphinx-rtd-theme==0.2.4

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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.

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ check-manifest==0.35
33
coverage==4.4.1
44
docutils==0.14
55
factory_boy==2.9.2
6-
Faker==0.8.4
6+
Faker==0.8.5
77
flake8-commas==0.4.3
88
flake8-quotes==0.11.0
99
flake8==3.4.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def run_tests(self):
139139

140140
setup(
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
},

0 commit comments

Comments
 (0)