Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Releases: dhruvmanila/remove-print-statements

v0.5.2

13 Jun 05:40
v0.5.2
dfe6d0c
Compare
Choose a tag to compare

What's Changed

  • fix: handle keyboard interrupt aka CTRL-C

Full Changelog: v0.5.1...v0.5.2

v0.5.1

20 Apr 14:20
6f920ee
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.5.1

v0.5.0

29 Oct 18:52
aa52a73
Compare
Choose a tag to compare

Changelog

  • Add support for Python 3.11

Full Changelog: v0.4.0...v0.5.0

v0.4.0

21 May 14:33
2fd8599
Compare
Choose a tag to compare

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

11 May 02:22
cf46023
Compare
Choose a tag to compare

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

17 Apr 06:58
1f8a3de
Compare
Choose a tag to compare

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

31 Mar 02:53
892f483
Compare
Choose a tag to compare

Changelog:

  • Fix dependency issue with black and click in ae4bccc. See the commit message for related issues.

Full Changelog: v0.2.1...v0.3.0

v0.2.1

24 Mar 05:27
1435828
Compare
Choose a tag to compare

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

17 Mar 04:31
dc6fac9
Compare
Choose a tag to compare

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

14 Mar 16:33
4255786
Compare
Choose a tag to compare

Fixes

  • Pre-commit hook will execute using a single process instead of in parallel.

Full Changelog: v0.1.2...v0.1.3