diff --git a/CHANGELOG b/CHANGELOG index b679f810..6bad6dfa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,8 +2,10 @@ jc changelog xxxxxxxx v1.20.5 - Add IP Address string parser -- Fix `lsusb` command parser for output containing a `Device Qualifier` section +- Fix `lsusb` command parser for output containing a `Device Qualifier` and + `Binary Object Store Descriptor` sections - Change LANG=C to LC_ALL=C in locale instructions +- Add `__main__.py` to package allowing `python -m jc` usage 20220723 v1.20.4 - Fix URL string parser path list for URLs ending in a forward slash diff --git a/jc/__main__.py b/jc/__main__.py new file mode 100644 index 00000000..58b4937a --- /dev/null +++ b/jc/__main__.py @@ -0,0 +1,3 @@ +import jc.cli + +jc.cli.main()