Releases: andrew-s28/easyignore
v0.3.2
v0.3.1
Minor release to fix double printing of success message.
v0.3.0
This release primarily includes a refactoring of the command line options and added support for using any file name or printing to stdout.
It also implements static type checking using mypy.
Finally, various updates to documentation and help outputs.
v0.2.1
When the custom completion flags were implemented in v0.2.0, it required setting:
typer.Typer(
...
add_completion=False
...
)so that the default flags were not shown.
However, this also causes the typer.completion.completion_init() function to not run, which breaks the autocomplete entirely in v0.2.0.
Simply adding typer.completion.completion_init() in the main.py file handles this initialization manually and should enable autocomplete again.
v0.2.0
Overrides the default --install-completion and --show-completion flag to enable the completion scripts to be ran without any arguments.
v0.1.1
- Bumps the minimum Python version to 3.10
- Changes PyPI publishing workflow to publish to PyPI on new release (this one should trigger a new PyPI upload)
v0.1.0
The initial release of easyignore, a Python command line tool for generating .gitignore files.