This repository has been archived by the owner on Nov 26, 2021. It is now read-only.
Releases: Justintime50/diff-tool
Releases · Justintime50/diff-tool
v3.0.0
v2.3.0
- Drop support for Python 3.6
- Replaces the
mock
library with the builtinunittest.mock
library - Reworks tests to use
io.StringIO()
instead of actual temp files
v2.2.0
- Fixed a bug when using this as a CLI tool and the tool wouldn't accept the path arguments (eg: TypeError: expected str, bytes or os.PathLike object, not TextIOWrapper)
- Refactored the code to be more clean and allow each function to only do a single thing, better variable names, default argument values, etc
v2.1.0
- Exporting package via
__init__.py
file - Small code cleanup
v2.0.0
- Renamed
diff-tool
fromdiff
to match published name and avoid conflict with potential otherdiff
tools - Changed all classmethods to staticmethods
- Switched from Travis CI to GitHub Actions
v1.3.1
- Simplified unit tests
v1.3.0
- Overhauled testing suite (less exclusions, more robust tests)
v1.2.1
- Fixed the entry point for the script (pip installs work again)
v1.2.0
- Various bug fixes and code refactors
- Mocked all tests
- Added pytest and coveralls
v1.1.0
- Added automated releases via Travis
- Updated README badges
- Added Makefile
- Added unit tests
- Cleaned up code to be more pythonic
- Switched from Pylint to Flake8