- style: change max line length to 88 - style: clean up test code styles - feat: support subscript node for varname (104) - ci: remove python3.8 from CI - breaking!: `varname` of `a.b` now returns `"a.b"` instead of `"a"`
0.12.2
- Add `helpers.exec_code` function to replace `exec` so that source code available at runtime
0.12.1
- Bump executing to 2.0.1
0.12.0
- Support python 3.12 - Update python3.12 to CI - Bump executing to ^2.0 - Bump up other dependencies - Add Dockerfile for codesandbox
0.11.2
- ✨ Add `jsobj` to create dict without explicitly specifying the key-value pairs
python from varname.helpers import jsobj
a = 1 b = 2 before dict(a=a, b=b, c=3) {'a': 1, 'b': 2, 'c': 3}
after jsobj(a, b, c=3) {'a': 1, 'b': 2, 'c': 3}
0.11.1
- ✨ Support starred variable for varname() (96) - ✅ Fix tests - 📝 Update docs for `varname(strict=...)`