Skip to content

Commit 47cacb6

Browse files
bump version to 1.8.4 (#1402)
1 parent 3b5329a commit 47cacb6

5 files changed

Lines changed: 18 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 1.8.4 - 2025-09-09
2+
3+
## What's Changed
4+
* fixed: generate Attribute nodes when applying type annotations by @tungol in https://github.com/Instagram/LibCST/pull/1396
5+
* added: Support parsing of t-strings #1374 by @drinkmorewaterr in https://github.com/Instagram/LibCST/pull/1398
6+
* added: add support for PEP758 by @drinkmorewaterr in https://github.com/Instagram/LibCST/pull/1401
7+
8+
## New Contributors
9+
* @tungol made their first contribution in https://github.com/Instagram/LibCST/pull/1396
10+
11+
**Full Changelog**: https://github.com/Instagram/LibCST/compare/v1.8.2...v1.8.4
12+
113
# 1.8.3 - 2025-08-29
214
## What's Changed
315
* removed: remove entry points to pure parser by @drinkmorewaterr in https://github.com/Instagram/LibCST/pull/1375

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A Concrete Syntax Tree (CST) parser and serializer library for Python
3737

3838
.. intro-start
3939
40-
LibCST parses Python 3.0 -> 3.13 source code as a CST tree that keeps
40+
LibCST parses Python 3.0 -> 3.14 source code as a CST tree that keeps
4141
all formatting details (comments, whitespaces, parentheses, etc). It's useful for
4242
building automated refactoring (codemod) applications and linters.
4343

native/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native/libcst/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[package]
77
name = "libcst"
8-
version = "1.8.3"
8+
version = "1.8.4"
99
authors = ["LibCST Developers"]
1010
edition = "2018"
1111
rust-version = "1.70"
@@ -42,7 +42,7 @@ peg = "0.8.5"
4242
annotate-snippets = "0.11.5"
4343
regex = "1.11.2"
4444
memchr = "2.7.4"
45-
libcst_derive = { path = "../libcst_derive", version = "1.8.3" }
45+
libcst_derive = { path = "../libcst_derive", version = "1.8.4" }
4646

4747
[dev-dependencies]
4848
criterion = { version = "0.6.0", features = ["html_reports"] }

native/libcst_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libcst_derive"
3-
version = "1.8.3"
3+
version = "1.8.4"
44
edition = "2018"
55
description = "Proc macro helpers for libcst."
66
license = "MIT"

0 commit comments

Comments
 (0)