Skip to content

Releases: andrew-s28/easyignore

v0.3.2

22 Apr 19:24

Choose a tag to compare

Minor release that adds a description to pyproject to appear on PyPI search.

v0.3.1

30 Mar 04:30

Choose a tag to compare

Minor release to fix double printing of success message.

v0.3.0

30 Mar 04:18

Choose a tag to compare

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

29 Mar 03:58

Choose a tag to compare

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

29 Mar 03:18

Choose a tag to compare

Overrides the default --install-completion and --show-completion flag to enable the completion scripts to be ran without any arguments.

v0.1.1

29 Mar 01:40

Choose a tag to compare

  • 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

29 Mar 01:26

Choose a tag to compare

The initial release of easyignore, a Python command line tool for generating .gitignore files.