django-log-formatter-asim 0.0.5__tar.gz → 0.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {django_log_formatter_asim-0.0.5 → django_log_formatter_asim-0.0.6}/PKG-INFO +33 -1
- {django_log_formatter_asim-0.0.5 → django_log_formatter_asim-0.0.6}/README.md +33 -0
- {django_log_formatter_asim-0.0.5 → django_log_formatter_asim-0.0.6}/pyproject.toml +1 -1
- {django_log_formatter_asim-0.0.5 → django_log_formatter_asim-0.0.6}/LICENSE +0 -0
- {django_log_formatter_asim-0.0.5 → django_log_formatter_asim-0.0.6}/django_log_formatter_asim/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: django-log-formatter-asim
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.6
|
|
4
4
|
Summary: Formats Django logs in ASIM format.
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Department for Business and Trade Platform Team
|
|
@@ -140,3 +140,35 @@ Run `poetry run pytest` in the root directory to run all tests.
|
|
|
140
140
|
|
|
141
141
|
Or, run `poetry run tox` in the root directory to run all tests for multiple Python versions. See the [`tox` configuration file](tox.ini).
|
|
142
142
|
|
|
143
|
+
### Publishing
|
|
144
|
+
|
|
145
|
+
1. Acquire API token from [Passman](https://passman.ci.uktrade.digital/secret/cc82a3f7-ddfa-4312-ab56-1ff8528dadc8/).
|
|
146
|
+
- Request access from the SRE team.
|
|
147
|
+
- _Note: You will need access to the `platform` group in Passman._
|
|
148
|
+
2. Run `poetry config pypi-token.pypi <token>` to add the token to your Poetry configuration.
|
|
149
|
+
|
|
150
|
+
Update the version, as the same version cannot be published to PyPI.
|
|
151
|
+
|
|
152
|
+
```
|
|
153
|
+
poetry version patch
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
More options for the `version` command can be found in the [Poetry documentation](https://python-poetry.org/docs/cli/#version). For example, for a minor version bump: `poetry version minor`.
|
|
157
|
+
|
|
158
|
+
Build the Python package.
|
|
159
|
+
|
|
160
|
+
```
|
|
161
|
+
poetry build
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
Publish the Python package.
|
|
165
|
+
|
|
166
|
+
_Note: Make sure your Pull Request (PR) is approved and contains the version upgrade in `pyproject.toml` before publishing the package._
|
|
167
|
+
|
|
168
|
+
```
|
|
169
|
+
poetry publish
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
Check the [PyPI Release history](https://pypi.org/project/django-log-formatter-asim/#history) to make sure the package has been updated.
|
|
173
|
+
|
|
174
|
+
For an optional manual check, install the package locally and test everything works as expected.
|
|
@@ -120,3 +120,36 @@ If you wish to create your own ASIM formatter, you can inherit from ASIMSystemFo
|
|
|
120
120
|
Run `poetry run pytest` in the root directory to run all tests.
|
|
121
121
|
|
|
122
122
|
Or, run `poetry run tox` in the root directory to run all tests for multiple Python versions. See the [`tox` configuration file](tox.ini).
|
|
123
|
+
|
|
124
|
+
### Publishing
|
|
125
|
+
|
|
126
|
+
1. Acquire API token from [Passman](https://passman.ci.uktrade.digital/secret/cc82a3f7-ddfa-4312-ab56-1ff8528dadc8/).
|
|
127
|
+
- Request access from the SRE team.
|
|
128
|
+
- _Note: You will need access to the `platform` group in Passman._
|
|
129
|
+
2. Run `poetry config pypi-token.pypi <token>` to add the token to your Poetry configuration.
|
|
130
|
+
|
|
131
|
+
Update the version, as the same version cannot be published to PyPI.
|
|
132
|
+
|
|
133
|
+
```
|
|
134
|
+
poetry version patch
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
More options for the `version` command can be found in the [Poetry documentation](https://python-poetry.org/docs/cli/#version). For example, for a minor version bump: `poetry version minor`.
|
|
138
|
+
|
|
139
|
+
Build the Python package.
|
|
140
|
+
|
|
141
|
+
```
|
|
142
|
+
poetry build
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
Publish the Python package.
|
|
146
|
+
|
|
147
|
+
_Note: Make sure your Pull Request (PR) is approved and contains the version upgrade in `pyproject.toml` before publishing the package._
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
poetry publish
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
Check the [PyPI Release history](https://pypi.org/project/django-log-formatter-asim/#history) to make sure the package has been updated.
|
|
154
|
+
|
|
155
|
+
For an optional manual check, install the package locally and test everything works as expected.
|
|
@@ -3,7 +3,7 @@ line-length = 100
|
|
|
3
3
|
|
|
4
4
|
[tool.poetry]
|
|
5
5
|
name = "django-log-formatter-asim"
|
|
6
|
-
version = "0.0.
|
|
6
|
+
version = "0.0.6"
|
|
7
7
|
description = "Formats Django logs in ASIM format."
|
|
8
8
|
authors = ["Department for Business and Trade Platform Team <sre-team@digital.trade.gov.uk>"]
|
|
9
9
|
license = "MIT"
|
|
File without changes
|
|
File without changes
|