Bump version to 1.4.0

This commit is contained in:
Zsolt Dollenstein 2024-05-22 07:29:27 -04:00
parent db696e6348
commit f0c83c136e
4 changed files with 30 additions and 5 deletions

View file

@ -1,3 +1,28 @@
# 1.4.0 - 2024-05-22
## Fixed
* Fix Literal parse error in RemoveImportsVisitor by @camillol in https://github.com/Instagram/LibCST/pull/1130
* Don't reset context.scratch between files by @zsol in https://github.com/Instagram/LibCST/pull/1151
* Various documentation fixes
* Typo fix FullRepoManager by @kit1980 in https://github.com/Instagram/LibCST/pull/1138
* ✏️ Fix tiny typo in `docs/source/metadata.rst` by @tiangolo in https://github.com/Instagram/LibCST/pull/1134
* ✏️ Fix typo in `docs/source/scope_tutorial.ipynb` by @tiangolo in https://github.com/Instagram/LibCST/pull/1135
* Update CONTRIBUTING.md by @zaicruvoir1rominet in https://github.com/Instagram/LibCST/pull/1142
## Added
* Add helper functions for common ways of filtering nodes by @zaicruvoir1rominet in https://github.com/Instagram/LibCST/pull/1137
* Dump CST to .dot (graphviz) files by @zaicruvoir1rominet in https://github.com/Instagram/LibCST/pull/1147
* Implement PEP-696 by @thereversiblewheel in https://github.com/Instagram/LibCST/pull/1141
## New Contributors
* @tiangolo made their first contribution in https://github.com/Instagram/LibCST/pull/1134
* @camillol made their first contribution in https://github.com/Instagram/LibCST/pull/1130
* @zaicruvoir1rominet made their first contribution in https://github.com/Instagram/LibCST/pull/1142
* @thereversiblewheel made their first contribution in https://github.com/Instagram/LibCST/pull/1141
**Full Changelog**: https://github.com/Instagram/LibCST/compare/v1.3.1...v1.4.0
# 1.3.1 - 2024-04-03
## Fixed

4
native/Cargo.lock generated
View file

@ -355,7 +355,7 @@ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b"
[[package]]
name = "libcst"
version = "1.3.1"
version = "1.4.0"
dependencies = [
"chic",
"criterion",
@ -373,7 +373,7 @@ dependencies = [
[[package]]
name = "libcst_derive"
version = "1.3.1"
version = "1.4.0"
dependencies = [
"quote",
"syn 2.0.41",

View file

@ -5,7 +5,7 @@
[package]
name = "libcst"
version = "1.3.1"
version = "1.4.0"
authors = ["LibCST Developers"]
edition = "2018"
rust-version = "1.70"
@ -42,7 +42,7 @@ peg = "0.8.1"
chic = "1.2.2"
regex = "1.9.3"
memchr = "2.5.0"
libcst_derive = { path = "../libcst_derive", version = "1.3.1" }
libcst_derive = { path = "../libcst_derive", version = "1.4.0" }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }

View file

@ -1,6 +1,6 @@
[package]
name = "libcst_derive"
version = "1.3.1"
version = "1.4.0"
edition = "2018"
description = "Proc macro helpers for libcst."
license-file = "LICENSE"