[go: up one dir, main page]

Skip to content
This repository has been archived by the owner on Apr 6, 2024. It is now read-only.

Latest commit

 

History

History
97 lines (68 loc) · 6.64 KB

release-notes.md

File metadata and controls

97 lines (68 loc) · 6.64 KB

Release Notes

Latest Changes

Internal

  • 👷 No longer publish typer-cli, as it's published by the typer repo. PR #135 by @tiangolo.
  • 🔧 Add GitHub templates for discussions and issues, and security policy. PR #133 by @alejsdev.
  • 👷 Update latest-changes GitHub Action. PR #130 by @tiangolo.

0.0.13

Upgrades

  • ✨ Refactor to make Typer CLI compatible with (and require) Typer >=0.4.0 and Click 8.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

  • ✨ Move CI to GitHub Actions, remove dependency on importlib-metadata. This would fix use cases that also depend on importlib-metadata and could have conflicts, like installing mkdocs, as now typer-cli no longer depends on importlib-metadata. PR #48 by @tiangolo.

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

  • Upgrade Typer to 0.2.1. PR #9.

0.0.8

  • Upgrade Typer to 0.1.1. PR #8.

0.0.7

  • Upgrade Typer to version 0.1.0. PR #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.

0.0.5

0.0.4

  • Handle default Typer to extract and run in this priority:
    • App object from --app CLI Option.
    • Function to convert to a Typer app from --func CLI Option.
    • Typer app in a variable with a name of app, cli, or main.
    • The first Typer app available in the file, with any name.
    • A function in a variable with a name of main, cli, or app.
    • The first function in the file, with any name.
    • PR #2.

0.0.3

  • Add Travis CI. PR #1.