Skip to content

Commit

Permalink
bump version to 1.2.0 (#1110)
Browse files Browse the repository at this point in the history
  • Loading branch information
zsol committed Feb 19, 2024
1 parent fa9300e commit 627bb0c
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# 1.2.0 - 2024-02-19

## Updated
* Support running LibCST on Python 3.12 and drop support for running it on 3.8
* remove 3.8 support by @zsol in https://github.com/Instagram/LibCST/pull/1073
* Remove reference to distutils by @zsol in https://github.com/Instagram/LibCST/pull/1099
* Update pyproject.toml for Python 3.12 support by @itamaro in https://github.com/Instagram/LibCST/pull/1038

## Added
* Allow `Element::codegen` to be used by external users by @Wilfred in https://github.com/Instagram/LibCST/pull/1071

## Fixed
* Fix parsing list matchers without explicit brackets by @zsol in https://github.com/Instagram/LibCST/pull/1097
* installing rustc/cargo for mybinder demo by @aleivag in https://github.com/Instagram/LibCST/pull/1083
* fix filepathprovider generic type by @kinto0 in https://github.com/Instagram/LibCST/pull/1036

## New Contributors
* @itamaro made their first contribution in https://github.com/Instagram/LibCST/pull/1039
* @kinto0 made their first contribution in https://github.com/Instagram/LibCST/pull/1036
* @dtolnay made their first contribution in https://github.com/Instagram/LibCST/pull/1063
* @anonymousdouble made their first contribution in https://github.com/Instagram/LibCST/pull/1082
* @aleivag made their first contribution in https://github.com/Instagram/LibCST/pull/1083
* @Wilfred made their first contribution in https://github.com/Instagram/LibCST/pull/1071
* @diliop made their first contribution in https://github.com/Instagram/LibCST/pull/1106

**Full Changelog**: https://github.com/Instagram/LibCST/compare/v1.1.0...v1.2.0

# 1.1.0 - 2023-10-05

## 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.1.0"
version = "1.2.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 = "1.1.0" }
libcst_derive = { path = "../libcst_derive", version = "1.2.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.1.0"
version = "1.2.0"
edition = "2018"
description = "Proc macro helpers for libcst."
license-file = "LICENSE"
Expand Down

0 comments on commit 627bb0c

Please sign in to comment.