Skip to content

Commit 59c45cc

Browse files
authored
Bump version to 0.0.1a2 (#395)
1 parent 4619c4a commit 59c45cc

8 files changed

Lines changed: 102 additions & 60 deletions

File tree

CHANGELOG.md

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

3+
## 0.0.1a2
4+
5+
### Enhancements
6+
7+
- Improve diagnostics for failure to call overloaded function ([#18073](https://github.com/astral-sh/ruff/pull/18073))
8+
- Fix inconsistent casing in `invalid-return-type` diagnostic ([#18084](https://github.com/astral-sh/ruff/pull/18084))
9+
- Add type-expression syntax link to `invalid-type-expression` diagnostics ([#18104](https://github.com/astral-sh/ruff/pull/18104))
10+
11+
### Bug fixes
12+
13+
- Add cycle handling for unpacking targets ([#18078](https://github.com/astral-sh/ruff/pull/18078))
14+
- Do not look up `__init__` on instances ([#18092](https://github.com/astral-sh/ruff/pull/18092))
15+
16+
### Typing
17+
18+
- Infer parameter specializations of explicitly implemented generic protocols ([#18054](https://github.com/astral-sh/ruff/pull/18054))
19+
- Check assignments to implicit global symbols are assignable to the types declared on `types.ModuleType` ([#18077](https://github.com/astral-sh/ruff/pull/18077))
20+
- Fix various generics-related TODOs ([#18062](https://github.com/astral-sh/ruff/pull/18062))
21+
22+
### Documentation
23+
24+
- Fix rule link in the configuration description ([#381](https://github.com/astral-sh/ty/pull/381))
25+
- Use `https://ty.dev/rules` when linking to the rules table ([#18072](https://github.com/astral-sh/ruff/pull/18072))
26+
- Use `ty server` instead of `ty lsp` ([#360](https://github.com/astral-sh/ty/pull/360))
27+
- Fix missing `>` in HTML anchor tags in CLI reference ([#18096](https://github.com/astral-sh/ruff/pull/18096))
28+
- Fix link to rules docs ([#378](https://github.com/astral-sh/ty/pull/378))
29+
- Fix repository in README transform script ([#361](https://github.com/astral-sh/ty/pull/361))
30+
31+
### Contributors
32+
33+
- [@dhruvmanila](https://github.com/dhruvmanila)
34+
- [@Usul-Dev](https://github.com/Usul-Dev)
35+
- [@dcreager](https://github.com/dcreager)
36+
- [@AlexWaygood](https://github.com/AlexWaygood)
37+
- [@BurntSushi](https://github.com/BurntSushi)
38+
- [@MichaReiser](https://github.com/MichaReiser)
39+
- [@frgfm](https://github.com/frgfm)
40+
- [@kiran-4444](https://github.com/kiran-4444)
41+
- [@sharkdp](https://github.com/sharkdp)
42+
- [@eruditmorina](https://github.com/eruditmorina)
43+
344
## 0.0.1a1
445

546
### Enhancements

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.1-alpha.1"
4+
version = "0.0.1-alpha.2"
55

66
# Config for 'dist'
77
[dist]

docs/reference/cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ty check [OPTIONS] [PATH]...
3030

3131
<h3 class="cli-reference">Arguments</h3>
3232

33-
<dl class="cli-reference"><dt id="ty-check--paths"><a href="#ty-check--paths"<code>PATHS</code></a></dt><dd><p>List of files or directories to check [default: the project root]</p>
33+
<dl class="cli-reference"><dt id="ty-check--paths"><a href="#ty-check--paths"><code>PATHS</code></a></dt><dd><p>List of files or directories to check [default: the project root]</p>
3434
</dd></dl>
3535

3636
<h3 class="cli-reference">Options</h3>
@@ -125,7 +125,7 @@ ty generate-shell-completion <SHELL>
125125

126126
<h3 class="cli-reference">Arguments</h3>
127127

128-
<dl class="cli-reference"><dt id="ty-generate-shell-completion--shell"><a href="#ty-generate-shell-completion--shell"<code>SHELL</code></a></dt></dl>
128+
<dl class="cli-reference"><dt id="ty-generate-shell-completion--shell"><a href="#ty-generate-shell-completion--shell"><code>SHELL</code></a></dt></dl>
129129

130130
<h3 class="cli-reference">Options</h3>
131131

docs/reference/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ respect-ignore-files = false
2222

2323
Configures the enabled rules and their severity.
2424

25-
See [the rules documentation](https://github.com/astral-sh/ty/blob/main/docs/reference/rules.md) for a list of all available rules.
25+
See [the rules documentation](https://ty.dev/rules) for a list of all available rules.
2626

2727
Valid severities are:
2828

docs/reference/rules.md

Lines changed: 54 additions & 53 deletions
Large diffs are not rendered by default.

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.1a1"
3+
version = "0.0.1a2"
44
requires-python = ">=3.8"
55
dependencies = []
66
description = "An extremely fast Python type checker, written in Rust."

ruff

Submodule ruff updated 161 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)