Skip to content

Commit

Permalink
release Hatchling v1.22.0 (#1322)
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Mar 16, 2024
1 parent 91b68f9 commit 5271279
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion backend/src/hatchling/__about__.py
@@ -1 +1 @@
__version__ = '1.21.1'
__version__ = '1.22.0'
2 changes: 2 additions & 0 deletions docs/history/hatchling.md
Expand Up @@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

## [1.22.0](https://github.com/pypa/hatch/releases/tag/hatchling-v1.22.0) - 2024-03-16 ## {: #hatchling-v1.22.0 }

***Deprecated:***

- The `app` build target has been renamed to `binary` to reduce ambiguity with the name of an upcoming feature. The former name will still be usable for several minor releases.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -39,7 +39,7 @@ classifiers = [
]
dependencies = [
"click>=8.0.6",
"hatchling<1.22",
"hatchling",
"httpx>=0.22.0",
"hyperlink>=21.0.0",
"keyring>=23.5.0",
Expand Down
4 changes: 1 addition & 3 deletions src/hatch/cli/build/__init__.py
Expand Up @@ -4,8 +4,6 @@

import click

from hatchling.builders.constants import EDITABLES_REQUIREMENT

if TYPE_CHECKING:
from hatch.cli.application import Application

Expand Down Expand Up @@ -59,7 +57,7 @@ def build(app: Application, location, targets, hooks_only, no_hooks, ext, clean,
from hatch.config.constants import AppEnvVars
from hatch.utils.fs import Path
from hatch.utils.structures import EnvVars
from hatchling.builders.constants import BuildEnvVars
from hatchling.builders.constants import EDITABLES_REQUIREMENT, BuildEnvVars
from hatchling.builders.plugin.interface import BuilderInterface

path = str(Path(location).resolve()) if location else None
Expand Down

0 comments on commit 5271279

Please sign in to comment.