File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 2.8.1] - 2023-03-15
8
+
9
+ ### Fixed
10
+ - A bug shortening names in the iterable of a comprehension when the original name was also used as a target in the comprehension
11
+ e.g. ` def f(x): return [x for x in x] ` would be incorrectly minified to ` def f(x):return[A for A in A] ` , instead of ` def f(x):return[A for A in x] ` .
12
+
7
13
## [ 2.8.0] - 2022-12-27
8
14
9
15
### Added
@@ -157,6 +163,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
157
163
- python-minifier package
158
164
- pyminify command
159
165
166
+ [ 2.8.1 ] : https://github.com/dflook/python-minifier/compare/2.8.0...2.8.1
160
167
[ 2.8.0 ] : https://github.com/dflook/python-minifier/compare/2.7.0...2.8.0
161
168
[ 2.7.0 ] : https://github.com/dflook/python-minifier/compare/2.6.0...2.7.0
162
169
[ 2.6.0 ] : https://github.com/dflook/python-minifier/compare/2.5.0...2.6.0
You can’t perform that action at this time.
0 commit comments