This repository has been archived by the owner on Oct 12, 2023. It is now read-only.
Releases: dhruvmanila/remove-print-statements
Releases · dhruvmanila/remove-print-statements
v0.5.2
v0.5.1
What's Changed
- Set
encoding
toutf-8
by default by @MicahLyle in #32
New Contributors
- @MicahLyle made their first contribution in #32
Full Changelog: v0.5.0...v0.5.1
v0.5.0
v0.4.0
Changelog:
- Update output format when the
--verbose
flag is provided.
old:
test1.py:7:0: print("module")
test1.py:18:8: print("property")
test1.py:27:4: print("method")
test1.py:29:8: print("for loop")
test2.py:7:0: print("module")
test2.py:18:8: print("property")
test2.py:27:4: print("method")
test2.py:29:8: print("for loop")
new:
test1.py
7 print("module")
18 print("property")
27 print("method")
29 print("for loop")
test2.py
7 print("module")
18 print("property")
27 print("method")
29 print("for loop")
Full Changelog: v0.3.2...v0.4.0
v0.3.2
Changelog
- chore: remove temp workaround for libcst bug (bb5cbfa)
Dependencies
- Bump minimum libcst version to
v0.4.2
Full Changelog: v0.3.1...v0.3.2
v0.3.1
Changelog
- fix: use native libcst parser for Python version >= 3.10 (b3d021b)
- fix: workaround for native libcst parser bug where it's not able to render the ParserSyntaxError as string (c7ec00b)
Full Changelog: v0.3.0...v0.3.1
v0.3.0
Changelog:
- Fix dependency issue with
black
andclick
in ae4bccc. See the commit message for related issues.
Full Changelog: v0.2.1...v0.3.0
v0.2.1
This is a minor release with not many updates.
What's Changed
- Documentation and testing for single print statement case. (d44fd6e and 7b334d7)
- Import future annotations to use builtin generic container types.
Full Changelog: v0.2.0...v0.2.1
v0.2.0
The project has moved it's status from Alpha
-> Beta
.
Fixes
- When the transformation fails, the tool will correctly exit with code 123. This was fixed in 9006c24
- Exit gracefully with code 0 when no filename is passed. The tool will be a noop in this case.
Full Changelog: v0.1.3...v0.2.0
v0.1.3
Fixes
- Pre-commit hook will execute using a single process instead of in parallel.
Full Changelog: v0.1.2...v0.1.3