Skip to content

Commit c825afb

Browse files
committed
Bump to 1.6.0
Summary: Test Plan:
1 parent 01c2939 commit c825afb

4 files changed

Lines changed: 35 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 1.6.0 - 2024-01-09
2+
3+
## Fixed
4+
5+
* rename: store state in scratch by @zsol in https://github.com/Instagram/LibCST/pull/1250
6+
* rename: handle imports via a parent module by @zsol in https://github.com/Instagram/LibCST/pull/1251
7+
* rename: Fix imports with aliases by @zsol in https://github.com/Instagram/LibCST/pull/1252
8+
* rename: don't leave trailing commas by @zsol in https://github.com/Instagram/LibCST/pull/1254
9+
* rename: don't eat commas unnecessarily by @zsol in https://github.com/Instagram/LibCST/pull/1256
10+
* rename: fix renaming toplevel names by @zsol in https://github.com/Instagram/LibCST/pull/1260
11+
* bump 3.12 to 3.13 in readme by @khameeteman in https://github.com/Instagram/LibCST/pull/1228
12+
13+
## Added
14+
15+
* Add codemod to convert `typing.Union` to `|` by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1270
16+
* Add codemod to fix variadic callable annotations by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1269
17+
* Add codemod to rename typing aliases of builtins by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1267
18+
* Add typing classifier to pyproject.toml and badge to README by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1272
19+
* Expose TypeAlias and TypeVar related structs in rust library by @Crozzers in https://github.com/Instagram/LibCST/pull/1274
20+
21+
## Updated
22+
* Upgrade pyo3 to 0.22 by @jelmer in https://github.com/Instagram/LibCST/pull/1180
23+
24+
## New Contributors
25+
* @yangdanny97 made their first contribution in https://github.com/Instagram/LibCST/pull/1270
26+
* @Crozzers made their first contribution in https://github.com/Instagram/LibCST/pull/1274
27+
* @jelmer made their first contribution in https://github.com/Instagram/LibCST/pull/1180
28+
29+
**Full Changelog**: https://github.com/Instagram/LibCST/compare/v1.5.1...v1.6.0
30+
131
# 1.5.1 - 2024-11-18
232

333
## Added

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.5.1"
8+
version = "1.6.0"
99
authors = ["LibCST Developers"]
1010
edition = "2018"
1111
rust-version = "1.70"
@@ -42,7 +42,7 @@ peg = "0.8.4"
4242
chic = "1.2.2"
4343
regex = "1.10.6"
4444
memchr = "2.7.4"
45-
libcst_derive = { path = "../libcst_derive", version = "1.4.0" }
45+
libcst_derive = { path = "../libcst_derive", version = "1.6.0" }
4646

4747
[dev-dependencies]
4848
criterion = { version = "0.5.1", 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.5.1"
3+
version = "1.6.0"
44
edition = "2018"
55
description = "Proc macro helpers for libcst."
66
license = "MIT"

0 commit comments

Comments
 (0)