Skip to content

Commit c2564ae

Browse files
authored
pump to 0.5.2 (#26)
* Update docs workflow to run only on master. * 0.5.2
1 parent 8af9558 commit c2564ae

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@
4545

4646
## v0.5.1
4747
- Add better messaging for weird nameof calls
48+
49+
## v0.5.2
50+
- Move messaging of weird nameof calls from `_bytecode_nameof` to `nameof`.
51+
- Disallow `full` to be used when `_bytecode_nameof` needs to be invoked.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "poetry.masonry.api"
44

55
[tool.poetry]
66
name = "varname"
7-
version = "0.5.1"
8-
description = "Retrieving variable names of function or class calls."
7+
version = "0.5.2"
8+
description = "Dark magics about variable names in python."
99
authors = [ "pwwang <[email protected]>",]
1010
license = "MIT"
1111
readme = "README.md"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
setup(
2222
long_description=readme,
2323
name='varname',
24-
version='0.5.1',
25-
description='Retrieving variable names of function or class calls.',
24+
version='0.5.2',
25+
description='Dark magics about variable names in python.',
2626
python_requires='==3.*,>=3.6.0',
2727
project_urls={
2828
"homepage": "https://github.com/pwwang/python-varname",

varname.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import executing
1212

13-
__version__ = "0.5.1"
13+
__version__ = "0.5.2"
1414
__all__ = [
1515
"VarnameRetrievingError", "varname", "will",
1616
"inject", "nameof", "namedtuple", "Wrapper"

0 commit comments

Comments
 (0)