Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 1.1.0 #1037

Merged
merged 1 commit into from
Oct 6, 2023
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
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# 1.1.0 - 2023-10-05

## Added
* PEP 695 support
* parser: PEP 695 - Type Parameter Syntax #1004
* Scope provider: support for type annotations #1014
* PEP 701 support
* parser: support arbitrarily nested f-strings #1026
* parser: Parse multiline expressions in f-strings #1027
* parser: Support files with mixed newlines #1007
* [libcst](https://crates.io/crates/libcst) is now published to crates.io

## Fixed
* codemod/ApplyTypeAnnotationsVisitor: Do not annotate the same variable multiple times #956
* parser: Don't swallow trailing whitespace #976
* codemod/rename: Avoid duplicating import statements when the module name doesn't change #981

## Updated
* cli: Don't gather dirs ending .py #994
* drop support for Python 3.7 #997
* A few parser performance improvements:
* Switch to using thread_local regular expressions to stop mutext contention #996
* Remove need for regex in TextPosition::matches #1002
* Remove Regexes from whitespace parser #1008

# 1.0.1 - 2023-06-07

## Fixed
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 = "0.1.0"
version = "1.1.0"
authors = ["LibCST Developers"]
edition = "2018"
rust-version = "1.70"
Expand Down Expand Up @@ -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 = "0.1.0" }
libcst_derive = { path = "../libcst_derive", version = "1.1.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 = "0.1.0"
version = "1.1.0"
edition = "2018"
description = "Proc macro helpers for libcst."
license-file = "LICENSE"
Expand Down
Loading