Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missig version #484

Merged
merged 1 commit into from
Feb 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add missig version
  • Loading branch information
tarsil committed Feb 1, 2025
commit 643cadc3adc6267063040ad037830dc16afa2af2
1 change: 1 addition & 0 deletions docs/en/docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ hide:
### Added

- Support for `async` jinja templates.
- Missing `esmerald --version` command to the cli.

### Changed

Expand Down
2 changes: 2 additions & 0 deletions esmerald/core/directives/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import click

from esmerald import __version__
from esmerald.core.directives.constants import (
APP_PARAMETER,
EXCLUDED_DIRECTIVES,
Expand Down Expand Up @@ -93,6 +94,7 @@ def invoke(self, ctx: click.Context) -> typing.Any:


@click.group(cls=DirectiveGroup)
@click.version_option(__version__)
@click.option(
APP_PARAMETER,
"path",
Expand Down