Skip to content

Commit

Permalink
Bump to 1.6.0
Browse files Browse the repository at this point in the history
Summary:

Test Plan:
  • Loading branch information
zsol committed Jan 9, 2025
1 parent 01c2939 commit c825afb
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 5 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# 1.6.0 - 2024-01-09

## Fixed

* rename: store state in scratch by @zsol in https://github.com/Instagram/LibCST/pull/1250
* rename: handle imports via a parent module by @zsol in https://github.com/Instagram/LibCST/pull/1251
* rename: Fix imports with aliases by @zsol in https://github.com/Instagram/LibCST/pull/1252
* rename: don't leave trailing commas by @zsol in https://github.com/Instagram/LibCST/pull/1254
* rename: don't eat commas unnecessarily by @zsol in https://github.com/Instagram/LibCST/pull/1256
* rename: fix renaming toplevel names by @zsol in https://github.com/Instagram/LibCST/pull/1260
* bump 3.12 to 3.13 in readme by @khameeteman in https://github.com/Instagram/LibCST/pull/1228

## Added

* Add codemod to convert `typing.Union` to `|` by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1270
* Add codemod to fix variadic callable annotations by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1269
* Add codemod to rename typing aliases of builtins by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1267
* Add typing classifier to pyproject.toml and badge to README by @yangdanny97 in https://github.com/Instagram/LibCST/pull/1272
* Expose TypeAlias and TypeVar related structs in rust library by @Crozzers in https://github.com/Instagram/LibCST/pull/1274

## Updated
* Upgrade pyo3 to 0.22 by @jelmer in https://github.com/Instagram/LibCST/pull/1180

## New Contributors
* @yangdanny97 made their first contribution in https://github.com/Instagram/LibCST/pull/1270
* @Crozzers made their first contribution in https://github.com/Instagram/LibCST/pull/1274
* @jelmer made their first contribution in https://github.com/Instagram/LibCST/pull/1180

**Full Changelog**: https://github.com/Instagram/LibCST/compare/v1.5.1...v1.6.0

# 1.5.1 - 2024-11-18

## Added
Expand Down
4 changes: 2 additions & 2 deletions native/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions native/libcst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[package]
name = "libcst"
version = "1.5.1"
version = "1.6.0"
authors = ["LibCST Developers"]
edition = "2018"
rust-version = "1.70"
Expand Down Expand Up @@ -42,7 +42,7 @@ peg = "0.8.4"
chic = "1.2.2"
regex = "1.10.6"
memchr = "2.7.4"
libcst_derive = { path = "../libcst_derive", version = "1.4.0" }
libcst_derive = { path = "../libcst_derive", version = "1.6.0" }

[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
Expand Down
2 changes: 1 addition & 1 deletion native/libcst_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libcst_derive"
version = "1.5.1"
version = "1.6.0"
edition = "2018"
description = "Proc macro helpers for libcst."
license = "MIT"
Expand Down

0 comments on commit c825afb

Please sign in to comment.