File tree 4 files changed +24
-8
lines changed
4 files changed +24
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## v1.0.2 (2024-09-02)
2
+ ** Added**
3
+ - tag_format in commitizen configuration in pyproject.toml
4
+ - changelog path in poetry urls
5
+
6
+ ** Refactored**
7
+ - Renamed setup_django into settings_configuration in tests dir
8
+ - Moved settings_configuration from fixtures into tests root dir
9
+
10
+
1
11
## v1.0.1 (2024-09-02)
12
+ ** Refactored**
13
+ - Updated badges path in README.md and installation guide
14
+ - Updated badges path in index.rst and installation guide
15
+ - Updated headers in RestructuredText documentations
16
+
17
+ ** Fixed**
18
+ - Removed repository from tool.poetry
19
+ - Fixed read the docs path in poetry urls
2
20
3
21
## v1.0.0 (2024-09-02)
22
+ - initial Release
Original file line number Diff line number Diff line change 18
18
request_middleware ,
19
19
reset_settings ,
20
20
)
21
- from django_logging .tests .fixtures .setup_django import configure_django_settings
21
+ from django_logging .tests .settings_configuration import configure_django_settings
22
+
22
23
configure_django_settings ()
Original file line number Diff line number Diff line change @@ -49,7 +49,3 @@ def configure_django_settings():
49
49
50
50
)
51
51
django .setup ()
52
-
53
-
54
- # Call this function before running your tests
55
- configure_django_settings ()
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ packages = [
39
39
[tool .poetry .urls ]
40
40
"Documentation" = " https://django-logging.readthedocs.io"
41
41
"Source Code" = " https://github.com/ARYAN-NIKNEZHAD/django_logging"
42
+ "Changelog" = " https://github.com/ARYAN-NIKNEZHAD/django_logging/blob/main/CHANGELOG.md"
42
43
"Issues" = " https://github.com/ARYAN-NIKNEZHAD/django_logging/issues"
43
44
44
45
[tool .poetry .dependencies ]
@@ -240,9 +241,8 @@ B104 = { check_typed_list = true }
240
241
241
242
[tool .commitizen ]
242
243
name = " cz_conventional_commits"
243
- version = " 1.0.1 "
244
- changelog_file = " CHANGELOG.md "
244
+ version = " 1.0.2 "
245
+ tag_format = " v$version "
245
246
246
247
[tool .commitizen .settings ]
247
- tag_format = " v$version"
248
248
increment_types = [ " feat" , " fix" ]
You can’t perform that action at this time.
0 commit comments