Skip to content

Commit 67ee70f

Browse files
authored
Update versionand change log for 0.7.3 (#62)
1 parent 4733a57 commit 67ee70f

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.7.3
2+
- Indicate where the `ImproperUseError` happens for `varname()` (Close #60)
3+
- Add `VarnameException` and `VarnameWarning` as root for all varname-defined exceptions and warnings.
4+
15
## v0.7.2
26
- Add `strict` mode to `varname()` (#57)
37
- Support the walrus operator (`:=`) (#58)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
44

55
[tool.poetry]
66
name = "varname"
7-
version = "0.7.2"
7+
version = "0.7.3"
88
description = "Dark magics about variable names in python."
99
authors = [ "pwwang <pwwang@pwwang.com>",]
1010
license = "MIT"

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@
2424
setup(
2525
long_description=readme,
2626
name='varname',
27-
version='0.7.2',
27+
version='0.7.3',
2828
description='Dark magics about variable names in python.',
2929
python_requires='==3.*,>=3.6.0',
30-
project_urls={"homepage": "https://github.com/pwwang/python-varname", "repository": "https://github.com/pwwang/python-varname"},
30+
project_urls={"homepage": "https://github.com/pwwang/python-varname",
31+
"repository": "https://github.com/pwwang/python-varname"},
3132
author='pwwang',
3233
author_email='pwwang@pwwang.com',
3334
license='MIT',

varname/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
)
1212
from .core import varname, nameof, will, argname, argname2
1313

14-
__version__ = "0.7.2"
14+
__version__ = "0.7.3"

0 commit comments

Comments
 (0)