-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
296 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Release 0.20.0 | ||
|
||
Date: 2021-09-18 | ||
|
||
New feature | ||
|
||
- #377 Added the ability to extract method to @staticmethod/@classmethod (@climbus) | ||
- #374 Changed Organize import to keep variables listed in `__all__` | ||
- Change default .ropeproject/config.py to ignore code in folders named | ||
.venv and venv (@0x1e02) | ||
|
||
Syntax support | ||
|
||
- #372 Add extract method refactoring of code containing `exec` (@ceridwen) | ||
- #389 Add extract method refactoring of code containing `async def`, `async for`, and `await` | ||
- #365, #386 Support extract method of expressions containing inline assignment (walrus operator) | ||
|
||
Bug fixes | ||
|
||
- #380 Fix list of variables that are returned and/or turned into argument when extracting method in a loop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
1. Increment version number in ``rope/__init__.py`` | ||
2. Tag the release with the tag annotation containing the release information | ||
2. Tag the release with the tag annotation containing the release information, e.g. ``git tag -s 0.21.0`` | ||
3. ``python3 setup.py sdist`` | ||
4. ``twine upload -s dist/rope-$VERSION.tar.gz*`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.