Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.7.3
- Indicate where the `ImproperUseError` happens for `varname()` (Close #60)
- Add `VarnameException` and `VarnameWarning` as root for all varname-defined exceptions and warnings.

## v0.7.2
- Add `strict` mode to `varname()` (#57)
- Support the walrus operator (`:=`) (#58)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "varname"
version = "0.7.2"
version = "0.7.3"
description = "Dark magics about variable names in python."
authors = [ "pwwang <pwwang@pwwang.com>",]
license = "MIT"
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
setup(
long_description=readme,
name='varname',
version='0.7.2',
version='0.7.3',
description='Dark magics about variable names in python.',
python_requires='==3.*,>=3.6.0',
project_urls={"homepage": "https://github.com/pwwang/python-varname", "repository": "https://github.com/pwwang/python-varname"},
project_urls={"homepage": "https://github.com/pwwang/python-varname",
"repository": "https://github.com/pwwang/python-varname"},
author='pwwang',
author_email='pwwang@pwwang.com',
license='MIT',
Expand Down
2 changes: 1 addition & 1 deletion varname/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
)
from .core import varname, nameof, will, argname, argname2

__version__ = "0.7.2"
__version__ = "0.7.3"