Skip to content

Commit

Permalink
Version 0.0.16 (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kludex authored Oct 27, 2024
1 parent ce85154 commit 8764067
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.0.16 (2024-10-27)

* Add dunder attributes to `multipart` package [#177](https://github.com/Kludex/python-multipart/pull/177).

## 0.0.15 (2024-10-27)

* Replace `FutureWarning` to `PendingDeprecationWarning` [#174](https://github.com/Kludex/python-multipart/pull/174).
Expand Down
1 change: 1 addition & 0 deletions multipart/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@
else:
warnings.warn("Please use `import python_multipart` instead.", PendingDeprecationWarning, stacklevel=2)
from python_multipart import *
from python_multipart import __all__, __author__, __copyright__, __license__, __version__
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,13 @@ Source = "https://github.com/Kludex/python-multipart"
path = "python_multipart/__init__.py"

[tool.hatch.build.targets.sdist]
include = ["/python_multipart", "/multipart", "/tests", "CHANGELOG.md", "LICENSE.txt"]
include = [
"/python_multipart",
"/multipart",
"/tests",
"CHANGELOG.md",
"LICENSE.txt",
]

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

[tool.ruff.lint.per-file-ignores]
"multipart/*.py" = ["F403"]
"__init__.py" = ["F401"]

[tool.coverage.run]
branch = false
Expand All @@ -115,10 +122,4 @@ exclude_lines = [
]

[tool.check-sdist]
git-only = [
"docs",
"fuzz",
"scripts",
"mkdocs.yml",
"uv.lock"
]
git-only = ["docs", "fuzz", "scripts", "mkdocs.yml", "uv.lock"]
2 changes: 1 addition & 1 deletion python_multipart/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__author__ = "Andrew Dunham"
__license__ = "Apache"
__copyright__ = "Copyright (c) 2012-2013, Andrew Dunham"
__version__ = "0.0.15"
__version__ = "0.0.16"

from .multipart import (
BaseParser,
Expand Down

0 comments on commit 8764067

Please sign in to comment.