Skip to content

Commit 651ee46

Browse files
authored
🚀 Release v2.0a2
PR #149
1 parent 0fdeaae commit 651ee46

File tree

5 files changed

+28
-29
lines changed

5 files changed

+28
-29
lines changed

.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 = 2.0a1
2+
current_version = 2.0a2
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)((\.(?P<patch>\d+))|((?P<level>(a|b|rc|final))(?P<prerelease>\d+)))

README.rst

Lines changed: 24 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,49 @@
11
Latest Release: |Version| |Tag|
22

3-
Documentation: |DevelopmentDocs|
3+
Documentation: |StableDocs|
44

5-
Compatibility: |Implementation| |Python| |Django| |License|
5+
Compatibility: |Implementation| |Python| |Django| |License| |Black|
66

77
Tests: |Pre-commit| |Coverage|
88

99
.. |Version| image:: http://img.shields.io/pypi/v/django-improved-user.svg
10-
:target: https://pypi.org/project/django-improved-user/
11-
:alt: PyPI Version
10+
:target: https://pypi.org/project/django-improved-user/
11+
:alt: PyPI Version
1212

1313
.. |Tag| image:: https://img.shields.io/github/tag/jambonsw/django-improved-user.svg
14-
:target: https://github.com/jambonsw/django-improved-user/releases
15-
:alt: Github Tag
14+
:target: https://github.com/jambonsw/django-improved-user/releases
15+
:alt: Github Tag
1616

17-
.. .. |StableDocs| image:: https://readthedocs.org/projects/django-improved-user/badge/?version=stable
18-
.. :target: http://django-improved-user.readthedocs.io/en/stable/?badge=stable
19-
.. :alt: Stable Documentation Status
20-
21-
.. |DevelopmentDocs| image:: https://readthedocs.org/projects/django-improved-user/badge/?version=latest
22-
:target: http://django-improved-user.readthedocs.io/en/latest/?badge=latest
23-
:alt: Development Documentation Status
17+
.. |StableDocs| image:: https://readthedocs.org/projects/django-improved-user/badge/?version=stable
18+
:target: https://django-improved-user.readthedocs.io/en/stable/?badge=stable
19+
:alt: Stable Documentation Status
2420

2521
.. |Implementation| image:: https://img.shields.io/pypi/implementation/django-improved-user.svg
26-
:target: https://pypi.org/project/django-improved-user/
27-
:alt: Python Implementation Support
22+
:target: https://pypi.org/project/django-improved-user/
23+
:alt: Python Implementation Support
2824

2925
.. |Python| image:: https://img.shields.io/pypi/pyversions/django-improved-user.svg
30-
:target: https://pypi.org/project/django-improved-user/
31-
:alt: Python Support
26+
:target: https://pypi.org/project/django-improved-user/
27+
:alt: Python Support
3228

3329
.. |Django| image:: https://img.shields.io/badge/Django-1.8%2C%201.11%2C%202.0%2C%202.1-blue.svg
34-
:target: https://pypi.org/project/django-improved-user/
35-
:alt: Django Support
30+
:target: https://pypi.org/project/django-improved-user/
31+
:alt: Django Support
3632

3733
.. |License| image:: http://img.shields.io/pypi/l/django-improved-user.svg
38-
:target: http://opensource.org/licenses/BSD-2-Clause
39-
:alt: License
34+
:target: http://opensource.org/licenses/BSD-2-Clause
35+
:alt: License
4036

4137
.. |Pre-commit| image:: https://results.pre-commit.ci/badge/github/jambonsw/django-improved-user/development.svg
42-
:target: https://results.pre-commit.ci/latest/github/jambonsw/django-improved-user/development
43-
:alt: pre-commit.ci status
38+
:target: https://results.pre-commit.ci/latest/github/jambonsw/django-improved-user/development
39+
:alt: pre-commit.ci status
4440

4541
.. |Coverage| image:: https://codecov.io/gh/jambonsw/django-improved-user/branch/development/graph/badge.svg
46-
   :target: https://codecov.io/gh/jambonsw/django-improved-user
47-
:alt: Coverage Status
42+
:target: https://codecov.io/gh/jambonsw/django-improved-user
43+
:alt: Coverage Status
44+
45+
.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
46+
:target: https://github.com/psf/black
4847

4948
.. end-badges
5049

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def setup(app):
173173
# The short X.Y version.
174174
version = "2.0"
175175
# The full version, including alpha/beta/rc tags.
176-
release = "2.0a1"
176+
release = "2.0a2"
177177

178178
# The language for content autogenerated by Sphinx. Refer to documentation
179179
# for a list of supported languages.

src/improved_user/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# 2. set default app config
55

66
# pylint: disable=invalid-name
7-
__version__ = "2.0a1"
7+
__version__ = "2.0a2"
88
# https://docs.djangoproject.com/en/stable/ref/applications/#configuring-applications
99
default_app_config = "improved_user.apps.ImprovedUserConfig"
1010
# pylint: enable=invalid-name

src/improved_user/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ImprovedUserConfig(AppConfig):
1313
default_auto_field = "django.db.models.AutoField"
1414

1515
def ready(self):
16-
"""Register Admin for User model
16+
"""Register User model for Admin
1717
1818
Ensure UserAdmin is only used when application is added to
1919
Installed Apps, and that UserAdmin can be imported if necessary

0 commit comments

Comments
 (0)