This repository has been archived by the owner on Apr 6, 2024. It is now read-only.
Releases: tiangolo/typer-cli
Releases · tiangolo/typer-cli
0.12.1
Use Typer instead of Typer CLI.
All the functionality in this repo for typer-cli
, has been integrated into Typer since version 0.12.1.
The main repo, https://github.com/tiangolo/typer, publishes a PyPI package typer-cli
(that used to be this repo), and that PyPI package does nothing other than depend on typer
.
All the functionality has been integrated into typer
.
Install instead typer
:
pip install typer
That includes the typer
command.
This repo is now deprecated and archived. 🤓
0.0.13
Upgrades
- ✨ Refactor to make Typer CLI compatible with (and require) Typer
>=0.4.0
and Click8.x.x
. Initial PRs #67 by @cdcadman and #82 by @omBratteng.
Internal
- 💚 Fix latest-changes GitHub Action, strike two ⚾. PR #97 by @tiangolo.
- 💚 Fix latest-changes release notes GitHub Action. PR #96 by @tiangolo.
- 📝 Update badges on README. PR #94 by @tiangolo.
- 👷 Tweak latest-changes GitHub Action when running as a workflow dispatch. PR #98 by @tiangolo.
- ⬆️ Enable tests and classifiers for Python 3.11. PR #95 by @tiangolo.
- 👷 Migrate CI coverage to Smokeshow and include alls-green. PR #93 by @tiangolo.
- 👷 Upgrade GitHub Actions, add funding config. PR #92 by @tiangolo.
- 👷 Upgrade Dependabot, include GitHub Actions. PR #86 by @tiangolo.
- ♻️ Refactor build system to use Hatch instead of Poetry. PR #85 by @tiangolo.
- ⬆️ Update flake8 requirement from ^3.7.9 to ^4.0.1. PR #52 by @dependabot[bot].
- ⬆️ Update pytest requirement from ^6.0.1 to ^7.0.1. PR #62 by @dependabot[bot].
0.0.12
0.0.11
- 🐛 Fix latest changes GitHub Action. PR #34 by @tiangolo.
- ⬆️ Update importlib-metadata requirement from ^1.5 to >=1.5,<3.0. PR #29.
- 👷 Add Latest Changes GitHub Action. PR #30 by @tiangolo.
- ⬆️ Update black requirement from ^19.10b0 to ^20.8b1. PR #28.
- ⬆️ Update pytest-xdist requirement from ^1.31.0 to ^2.1.0. PR #27.
0.0.10
- ⬆️ Update pytest requirement from ^5.4.3 to ^6.0.1. PR #22.
- Update tests with defaults. PR #24.
- Add support for CLI Arguments with
help
. PR #20 by @ovezovs. - ⬆ Upgrade Typer version to 0.3.0. PR #13.
- ⬆️ Update mypy requirement from ^0.761 to ^0.782. PR #18.
- ⬆️ Update pytest requirement from ^4.4.0 to ^5.4.3. PR #16.
- ⬆️ Update isort requirement from ^4.3.21 to ^5.0.6. PR #15.
- Update GitHub action issue-manager and add Dependabot. PR #14.
0.0.9
0.0.8
0.0.7
0.0.6
- Synchronize README with docs in Typer - Typer CLI and update links. PR #5.
- Upgrade Typer after re-implementing completion:
- Add support for PowerShell in modern versions (e.g. Windows 10).
- Fix support for user-provided completions.
- Fix creation of sub-command
run
in each internal case. - PR #4.