Skip to content

Commit 8764067

Browse files
authored
Version 0.0.16 (#177)
1 parent ce85154 commit 8764067

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.0.16 (2024-10-27)
4+
5+
* Add dunder attributes to `multipart` package [#177](https://github.com/Kludex/python-multipart/pull/177).
6+
37
## 0.0.15 (2024-10-27)
48

59
* Replace `FutureWarning` to `PendingDeprecationWarning` [#174](https://github.com/Kludex/python-multipart/pull/174).

multipart/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@
1818
else:
1919
warnings.warn("Please use `import python_multipart` instead.", PendingDeprecationWarning, stacklevel=2)
2020
from python_multipart import *
21+
from python_multipart import __all__, __author__, __copyright__, __license__, __version__

pyproject.toml

+9-8
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,13 @@ Source = "https://github.com/Kludex/python-multipart"
6868
path = "python_multipart/__init__.py"
6969

7070
[tool.hatch.build.targets.sdist]
71-
include = ["/python_multipart", "/multipart", "/tests", "CHANGELOG.md", "LICENSE.txt"]
71+
include = [
72+
"/python_multipart",
73+
"/multipart",
74+
"/tests",
75+
"CHANGELOG.md",
76+
"LICENSE.txt",
77+
]
7278

7379
[tool.hatch.build.targets.wheel]
7480
packages = ["python_multipart", "multipart"]
@@ -92,6 +98,7 @@ split-on-trailing-comma = false
9298

9399
[tool.ruff.lint.per-file-ignores]
94100
"multipart/*.py" = ["F403"]
101+
"__init__.py" = ["F401"]
95102

96103
[tool.coverage.run]
97104
branch = false
@@ -115,10 +122,4 @@ exclude_lines = [
115122
]
116123

117124
[tool.check-sdist]
118-
git-only = [
119-
"docs",
120-
"fuzz",
121-
"scripts",
122-
"mkdocs.yml",
123-
"uv.lock"
124-
]
125+
git-only = ["docs", "fuzz", "scripts", "mkdocs.yml", "uv.lock"]

python_multipart/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__author__ = "Andrew Dunham"
33
__license__ = "Apache"
44
__copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
5-
__version__ = "0.0.15"
5+
__version__ = "0.0.16"
66

77
from .multipart import (
88
BaseParser,

0 commit comments

Comments
 (0)