Skip to content

Commit 4f7e20d

Browse files
committed
Bump version: 0.7.3 → 0.8.0
1 parent ad7903c commit 4f7e20d

File tree

3 files changed

+85
-78
lines changed

3 files changed

+85
-78
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22

33

4+
## Version 0.8
5+
6+
### v0.8.0
7+
8+
* Add CHANGELOG.md
9+
* Remove deprecated code in version 0.6 (#114)
10+
* Add ID translations
11+
* Correct FR translation
12+
* Remove unused `api_view_serializer_class*` decorators
13+
* Rewrite views as APIView classes (#55)
14+
15+
416
## Version 0.7
517

618
### v0.7.3

rest_registration/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.3"
1+
__version__ = "0.8.0"

setup.cfg

Lines changed: 72 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 0.7.3
2+
current_version = 0.8.0
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}
88

99
[metadata]
@@ -16,49 +16,49 @@ description-file = README.md
1616
long-description = file:README.md
1717
long-description-content-type = text/markdown; charset=UTF-8
1818
url = https://github.com/apragacz/django-rest-registration
19-
project-urls =
20-
Bug Tracker = https://github.com/apragacz/django-rest-registration/issues
21-
Documentation = https://django-rest-registration.readthedocs.io/
22-
Source Code = https://github.com/apragacz/django-rest-registration
23-
keywords =
24-
django
25-
rest
26-
api
27-
auth
28-
rest-framework
29-
registration
30-
register
31-
login
32-
reset-password
33-
register-email
34-
change-email
35-
sign-up
36-
sign-in
19+
project-urls =
20+
Bug Tracker = https://github.com/apragacz/django-rest-registration/issues
21+
Documentation = https://django-rest-registration.readthedocs.io/
22+
Source Code = https://github.com/apragacz/django-rest-registration
23+
keywords =
24+
django
25+
rest
26+
api
27+
auth
28+
rest-framework
29+
registration
30+
register
31+
login
32+
reset-password
33+
register-email
34+
change-email
35+
sign-up
36+
sign-in
3737
license = MIT
3838
license-file = LICENSE
39-
classifiers =
40-
Development Status :: 4 - Beta
41-
Environment :: Web Environment
42-
Framework :: Django
43-
Framework :: Django :: 2.0
44-
Framework :: Django :: 3.0
45-
Framework :: Django :: 4.0
46-
Intended Audience :: Developers
47-
License :: OSI Approved :: MIT License
48-
Operating System :: POSIX
49-
Operating System :: POSIX :: Linux
50-
Programming Language :: Python
51-
Programming Language :: Python :: 3
52-
Programming Language :: Python :: 3 :: Only
53-
Topic :: Internet
54-
Topic :: Internet :: WWW/HTTP
39+
classifiers =
40+
Development Status :: 4 - Beta
41+
Environment :: Web Environment
42+
Framework :: Django
43+
Framework :: Django :: 2.0
44+
Framework :: Django :: 3.0
45+
Framework :: Django :: 4.0
46+
Intended Audience :: Developers
47+
License :: OSI Approved :: MIT License
48+
Operating System :: POSIX
49+
Operating System :: POSIX :: Linux
50+
Programming Language :: Python
51+
Programming Language :: Python :: 3
52+
Programming Language :: Python :: 3 :: Only
53+
Topic :: Internet
54+
Topic :: Internet :: WWW/HTTP
5555

5656
[options]
5757
include_package_data = True
5858
python_requires = >=3.5
59-
install_requires =
60-
Django>=2.0
61-
djangorestframework>=3.3
59+
install_requires =
60+
Django>=2.0
61+
djangorestframework>=3.3
6262

6363
[isort]
6464
line_length = 88
@@ -78,22 +78,22 @@ const-rgx = ([a-z_][a-z0-9_]{3,30}|[A-Z_][A-Z0-9_]{3,30})
7878
good-names = i, j, k, db
7979
min-public-methods = 0
8080
max-args = 6
81-
disable =
82-
missing-docstring,
83-
unused-argument,
84-
unused-import,
85-
line-too-long,
86-
ungrouped-imports,
87-
fixme,
88-
consider-using-f-string,
81+
disable =
82+
missing-docstring,
83+
unused-argument,
84+
unused-import,
85+
line-too-long,
86+
ungrouped-imports,
87+
fixme,
88+
consider-using-f-string,
8989
score = no
90-
generated-members =
91-
objects
92-
from_queryset
93-
__setattr__
94-
DoesNotExist
95-
Meta
96-
_meta
90+
generated-members =
91+
objects
92+
from_queryset
93+
__setattr__
94+
DoesNotExist
95+
Meta
96+
_meta
9797

9898
[pylint:similarities]
9999
min-similarity-lines = 5
@@ -103,9 +103,9 @@ ignore-imports = yes
103103
max-parents = 10
104104

105105
[mypy]
106-
plugins =
107-
mypy_django_plugin.main,
108-
mypy_drf_plugin.main
106+
plugins =
107+
mypy_django_plugin.main,
108+
mypy_drf_plugin.main
109109

110110
[mypy.plugins.django-stubs]
111111
django_settings_module = tests.default_settings
@@ -114,31 +114,26 @@ django_settings_module = tests.default_settings
114114
DJANGO_SETTINGS_MODULE = tests.default_settings
115115
django_find_project = false
116116
addopts = --doctest-modules
117-
testpaths =
118-
tests
119-
rest_registration
117+
testpaths =
118+
tests
119+
rest_registration
120120

121121
[coverage:run]
122122
branch = True
123-
source =
124-
rest_registration
123+
source =
124+
rest_registration
125125

126126
[coverage:report]
127-
exclude_lines =
128-
# Have to re-enable the standard pragma
129-
pragma: no cover
130-
131-
# Don't complain about missing debug-only code:
132-
def __repr__
133-
134-
# Don't complain if tests don't hit defensive assertion code:
135-
raise AssertionError
136-
raise NotImplementedError
137-
138-
# Don't complain if non-runnable code isn't run:
139-
if __name__ == .__main__.:
140-
if TYPE_CHECKING:
141-
127+
exclude_lines =
128+
pragma: no cover
129+
130+
def __repr__
131+
132+
raise AssertionError
133+
raise NotImplementedError
134+
135+
if __name__ == .__main__.:
136+
if TYPE_CHECKING:
142137
ignore_errors = True
143138

144139
[coverage:html]

0 commit comments

Comments
 (0)