Skip to content

Commit 5271279

Browse files
authored
release Hatchling v1.22.0 (#1322)
1 parent 91b68f9 commit 5271279

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

backend/src/hatchling/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.21.1'
1+
__version__ = '1.22.0'

docs/history/hatchling.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
## Unreleased
1010

11+
## [1.22.0](https://github.com/pypa/hatch/releases/tag/hatchling-v1.22.0) - 2024-03-16 ## {: #hatchling-v1.22.0 }
12+
1113
***Deprecated:***
1214

1315
- 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.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ classifiers = [
3939
]
4040
dependencies = [
4141
"click>=8.0.6",
42-
"hatchling<1.22",
42+
"hatchling",
4343
"httpx>=0.22.0",
4444
"hyperlink>=21.0.0",
4545
"keyring>=23.5.0",

src/hatch/cli/build/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
import click
66

7-
from hatchling.builders.constants import EDITABLES_REQUIREMENT
8-
97
if TYPE_CHECKING:
108
from hatch.cli.application import Application
119

@@ -59,7 +57,7 @@ def build(app: Application, location, targets, hooks_only, no_hooks, ext, clean,
5957
from hatch.config.constants import AppEnvVars
6058
from hatch.utils.fs import Path
6159
from hatch.utils.structures import EnvVars
62-
from hatchling.builders.constants import BuildEnvVars
60+
from hatchling.builders.constants import EDITABLES_REQUIREMENT, BuildEnvVars
6361
from hatchling.builders.plugin.interface import BuilderInterface
6462

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

0 commit comments

Comments
 (0)