Skip to content

Commit

Permalink
Bump version to 0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bwendling committed Jun 13, 2023
1 parent 382db92 commit e58b7c4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# All notable changes to this project will be documented in this file.
# This project adheres to [Semantic Versioning](http://semver.org/).

## [0.40.0] UNRELEASED
## [0.40.0] 2023-06-13
### Added
- Support for Python 3.11
- Add the `--print-modified` flag to print out file names of modified files when
Expand All @@ -11,7 +11,7 @@
- Replace the outdated and no-longer-supported lib2to3 with a fork of blib2to3,
Black's version of lib2to3.
### Removed
- Support for Python <3.7
- Support for Python versions < 3.7 are no longer supported.

## [0.33.0] 2023-04-18
### Added
Expand Down
2 changes: 1 addition & 1 deletion HACKING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Releasing a new version
* Run tests: python setup.py test
[don't forget to run with at least Python 3.7 and 3.11]

* Bump version in yapf/__init__.py
* Bump version in setup.py.

* Build source distribution: python setup.py sdist

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Options::
permanent
--no-local-style don't search for local style definition
-p, --parallel run YAPF in parallel when formatting multiple
files. Requires concurrent.futures in Python 2.X
files.
-m, --print-modified print out file names of modified files
-vv, --verbose print out file names while processing

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def run(self):
with codecs.open('README.rst', 'r', 'utf-8') as fd:
setup(
name='yapf',
version='0.33.0',
version='0.40.0',
description='A formatter for Python code.',
url='https://github.com/google/yapf',
long_description=fd.read(),
Expand Down
3 changes: 1 addition & 2 deletions yapf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,7 @@ def _BuildParser():
'-p',
'--parallel',
action='store_true',
help=('run YAPF in parallel when formatting multiple files. Requires '
'concurrent.futures in Python 2.X'))
help=('run YAPF in parallel when formatting multiple files.'))
parser.add_argument(
'-m',
'--print-modified',
Expand Down

1 comment on commit e58b7c4

@Spitfire1900
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚀 🚀 🚀

Please sign in to comment.