Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zsol committed Oct 6, 2023
1 parent 7ca5d7f commit 963139e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 3 deletions.
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
2 changes: 1 addition & 1 deletion native/Cargo.lock

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

2 changes: 1 addition & 1 deletion 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
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

0 comments on commit 963139e

Please sign in to comment.