Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# 1.8.6 - 2025-11-03

## What's Changed
* Update pyproject.toml for 3.14t by @itamaro in https://github.com/Instagram/LibCST/pull/1417
* Update PyO3 to 0.26 by @cjwatson in https://github.com/Instagram/LibCST/pull/1413
* Make CodemodCommand's supported_transforms order deterministic by @frvnkliu in https://github.com/Instagram/LibCST/pull/1424

## New Contributors
* @cjwatson made their first contribution in https://github.com/Instagram/LibCST/pull/1413
* @frvnkliu made their first contribution in https://github.com/Instagram/LibCST/pull/1424

**Full Changelog**: https://github.com/Instagram/LibCST/compare/v1.8.5...v1.8.6

# 1.8.5 - 2025-09-25

## What's Changed
Expand Down
7 changes: 4 additions & 3 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
1. Version bumps are generally not worth mentioning with some notable exceptions (like pyo3)
1. Group related PRs into one bullet point if it makes sense
2. manually bump versions in `Cargo.toml` files in the repo
3. make a new PR with the above changes, get it reviewed and landed
4. make a new release on Github, create a new tag on publish, and copy the contents of the changelog entry in there
5. after publishing, check out the repo at the new tag, and run `cd native; cargo +nightly publish -Z package-workspace -p libcst_derive -p libcst`
3. run `cargo update -p libcst`
4. make a new PR with the above changes, get it reviewed and landed
5. make a new release on Github, create a new tag on publish, and copy the contents of the changelog entry in there
6. after publishing, check out the repo at the new tag, and run `cd native; cargo +nightly publish -Z package-workspace -p libcst_derive -p libcst`
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.8.5"
version = "1.8.6"
authors = ["LibCST Developers"]
edition = "2018"
rust-version = "1.70"
Expand Down Expand Up @@ -42,7 +42,7 @@ peg = "0.8.5"
annotate-snippets = "0.11.5"
regex = "1.11.2"
memchr = "2.7.4"
libcst_derive = { path = "../libcst_derive", version = "1.8.5" }
libcst_derive = { path = "../libcst_derive", version = "1.8.6" }

[dev-dependencies]
criterion = { version = "0.6.0", 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.8.5"
version = "1.8.6"
edition = "2018"
description = "Proc macro helpers for libcst."
license = "MIT"
Expand Down
Loading