Skip to content

Commit 438a78d

Browse files
Bump version to 0.0.29 (#3218)
1 parent 927aad2 commit 438a78d

6 files changed

Lines changed: 29 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## 0.0.29
4+
5+
Released on 2026-04-05.
6+
7+
### Bug fixes
8+
9+
- Avoid special-casing for `dataclasses.field` if it's not in `field_specifiers` ([#24397](https://github.com/astral-sh/ruff/pull/24397))
10+
- Reject unsupported `environment.python-version` values in configuration files ([#24402](https://github.com/astral-sh/ruff/pull/24402))
11+
- Respect supported lower bounds from `requires-python` ([#24401](https://github.com/astral-sh/ruff/pull/24401))
12+
13+
### Core type checking
14+
15+
- Add support for `types.new_class` ([#23144](https://github.com/astral-sh/ruff/pull/23144))
16+
- Fix PEP 695 type aliases in `with` statement ([#24395](https://github.com/astral-sh/ruff/pull/24395))
17+
- Respect `__new__` and metaclass `__call__` return types ([#24357](https://github.com/astral-sh/ruff/pull/24357))
18+
- Treat enum attributes with type annotations as members ([#23776](https://github.com/astral-sh/ruff/pull/23776))
19+
20+
### Contributors
21+
22+
- [@charliermarsh](https://github.com/charliermarsh)
23+
- [@carljm](https://github.com/carljm)
24+
325
## 0.0.28
426

527
Released on 2026-04-02.

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
members = ["cargo:./ruff"]
33
packages = ["ty"]
4-
version = "0.0.28"
4+
version = "0.0.29"
55

66
# Config for 'dist'
77
[dist]

docs/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ty includes a standalone installer.
7171
Request a specific version by including it in the URL:
7272

7373
```console
74-
$ curl -LsSf https://astral.sh/ty/0.0.28/install.sh | sh
74+
$ curl -LsSf https://astral.sh/ty/0.0.29/install.sh | sh
7575
```
7676

7777
=== "Windows"
@@ -87,7 +87,7 @@ ty includes a standalone installer.
8787
Request a specific version by including it in the URL:
8888

8989
```pwsh-session
90-
PS> powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/ty/0.0.28/install.ps1 | iex"
90+
PS> powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/ty/0.0.29/install.ps1 | iex"
9191
```
9292

9393
!!! tip
@@ -163,7 +163,7 @@ COPY --from=ghcr.io/astral-sh/ty:latest /ty /bin/
163163
The following tags are available:
164164

165165
- `ghcr.io/astral-sh/ty:latest`
166-
- `ghcr.io/astral-sh/ty:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/ty:0.0.28`
166+
- `ghcr.io/astral-sh/ty:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/ty:0.0.29`
167167
- `ghcr.io/astral-sh/ty:{major}.{minor}`, e.g., `ghcr.io/astral-sh/ty:0.0` (the latest patch
168168
version)
169169

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ty"
3-
version = "0.0.28"
3+
version = "0.0.29"
44
requires-python = ">=3.8"
55
dependencies = []
66
description = "An extremely fast Python type checker, written in Rust."

ruff

Submodule ruff updated 59 files

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)