summaryrefslogtreecommitdiff
path: root/CHANGES.txt
Commit message (Collapse)AuthorAgeFilesLines
* Announce Anthony as core developer, tweak release date.Ian Lee2020-05-111-1/+5
|
* 2.6.0Anthony Sottile2020-05-081-1/+11
|
* 2.6.0a1Anthony Sottile2020-04-021-0/+25
|
* Tiny typo fixAnthony Sottile2019-01-291-1/+1
|
* Add release notes for 2.5.02.5.0Ian Stapleton Cordasco2019-01-291-1/+17
| | | | Bump version to 2.5.0 for release
* Add check for over-indented blocksJon Dufresne2019-01-241-0/+1
| | | | | | | | | In a project with all lines indented 4 spaces, I noticed pycodestyle was not catching code that was accidentally indented two levels (8 spaces). The over indentation was unintended and can be caught during static analysis. Fixes #430
* Marked changelog that this PR will be version 3.xIan Lee2018-06-031-2/+2
|
* Added PR numberIan Lee2018-06-031-1/+1
|
* Remove support for EOL Python 2.6 and 3.3Jon Dufresne2018-06-021-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 2.6 an 3.3 are end of life. They are no longer receiving bug fixes, including for security issues. Python 2.6 went EOL on 2013-10-29 and 3.3 on 2017-09-29. For additional details on support Python versions, see: https://devguide.python.org/#status-of-python-branches Removing support for EOL Pythons will reduce testing and maintenance resources. Removed all workarounds for older Pythons. Updated trove classifiers and documentation to better communicate supported Python versions. Additionally, pass python_requires argument to setuptools. Helps pip decide what version of the library to install. https://packaging.python.org/tutorials/distributing-packages/#python-requires > If your project only runs on certain Python versions, setting the > python_requires argument to the appropriate PEP 440 version specifier > string will prevent pip from installing the project on other Python > versions. https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords > python_requires > > A string corresponding to a version specifier (as defined in PEP 440) > for the Python version, used to specify the Requires-Python defined in > PEP 345. Can now use more modern Python syntax including dictionary comprehension as well as more generators. Closes #755
* Release v2.4.02.4.0Ian Stapleton Cordasco2018-04-101-2/+2
|
* Add PR references from all changelog itemsJakob Gerhard Martinussen2018-04-091-18/+18
|
* Fixed typoIan Lee2018-04-091-1/+1
|
* Add changelog items for 2.3.1...masterJakob Gerhard Martinussen2018-04-091-3/+39
|
* Merge pull request #684 from jdufresne/async-awaitIan Stapleton Cordasco2018-02-171-0/+2
|\ | | | | Add W606 warning for async and await keywords in Python 3.7
| * Add W606 warning for async and await keywords in Python 3.7Jon Dufresne2017-09-301-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From https://docs.python.org/3/whatsnew/3.6.html#new-keywords > async and await are not recommended to be used as variable, class, > function or module names. Introduced by PEP 492 in Python 3.5, they > will become proper keywords in Python 3.7. Starting in Python 3.6, the > use of async or await as names will generate a DeprecationWarning. By adding a warning to pycodestyle.py these future warnings and syntax errors can be caught during static code analysis. The await expression tests were taken from PEP-492. https://www.python.org/dev/peps/pep-0492/#id58
* | Fixed typoIan Lee2018-01-191-1/+1
| |
* | Add a changelog entry for W504Ian Stapleton Cordasco2018-01-171-0/+2
|/
* Add W605 warning for invalid escape sequences in string literalsJon Dufresne2017-09-101-0/+7
| | | | | | | | | | | | | | | | | | | Starting with Python 3.6, invalid escape sequences in string literals are now deprecated. In a future version of Python, invalid escape sequences will be a syntax error. While this deprecation produces a runtime warning, it only appears if warnings are enabled and the first time the Python source is compiled to byte code. By adding a check to pycodestyle, projects can take advantage of static analysis to catch and fix these future syntax errors. For more information on the deprecation, see the Python release notes, https://docs.python.org/3/whatsnew/3.6.html#deprecated-python-behavior > A backslash-character pair that is not a valid escape sequence now > generates a DeprecationWarning. Although this will eventually become a > SyntaxError, that will not be for several Python releases. Fixes #633
* Spelling fixesVille Skyttä2017-02-241-1/+1
|
* Bump version for 2.3.12.3.1Ian Cordasco2017-01-301-0/+7
| | | | Add release notes for 2.3.1 as well
* Prepare 2.3.0 releaseIan Cordasco2017-01-271-0/+16
|
* warn about bare except clauseŁukasz Rogalski2016-12-281-0/+1
|
* Tagged release of 2.2.02.2.0Ian Lee2016-11-141-0/+11
| | | | Signed-off-by: Ian Lee <IanLee1521@gmail.com>
* Fixed CHANGELOG release date for v2.1.0Ian Lee2016-11-141-1/+1
|
* Updated changelog for #591Ian Lee2016-11-041-0/+1
|
* Fixed line wrapping in CHANGELOGIan Lee2016-09-291-4/+7
|
* Update tested python version notes.Thomas Schultz2016-09-211-1/+1
|
* Updated changelog from feedback.Thomas Schultz2016-09-211-16/+5
|
* Update CHANGES.txt for 2.1.0 release.Thomas Schultz2016-09-181-5/+24
|
* Fixed placement of changelog entryIan Lee2016-06-251-1/+1
|
* Fix issue #400: Require two blank lines after toplevel def, classNikhil Benesch2016-06-251-0/+1
|
* Updated changelog with 2.1 milestone changesIan Lee2016-06-251-0/+3
|
* Updated changelog to specify changes in 2.1.0Ian Lee2016-06-061-1/+7
|
* Report E741 for prohibited single-letter variablesMike Miller2016-06-021-0/+1
| | | | | | | Check for prohibited identifiers occuring to the lhs of an assignment operator or after the 'as' keyword. Closes #341
* Tagged release 2.0.02.0.0release/2.0.0Ian Lee2016-05-311-1/+1
|
* Removed project level `.pep8` config fileIan Lee2016-05-311-0/+1
| | | | Closes #364
* Update next version plan to 2.0.0Ian Lee2016-05-311-1/+1
| | | | | | | | | In order to better high-light the name change, and backwards incompatibility. This also allows dependent tools (like flake8) to pin to `pycodestyle < 2.0` as a dependency while transitioning to the new package.
* Updated changelog with changes made since 1.7.0Ian Lee2016-05-311-2/+4
|
* Fixed typo in changelogIan Lee2016-05-311-1/+1
|
* Finished updating rtd linksupdate-rtd-linksIan Lee2016-05-291-1/+1
| | | | Updated references to pep8.readthedocs.io -> pycodestyle.readthedocs.io
* Convert readthedocs link for their .org -> .io migration for hosted projectsAdam Chainz2016-05-291-1/+1
| | | | | | | | As per their email ‘Changes to project subdomains’: > Starting today, Read the Docs will start hosting projects from subdomains on the domain readthedocs.io, instead of on readthedocs.org. This change addresses some security concerns around site cookies while hosting user generated data on the same domain as our dashboard. Test Plan: Manually visited all the links I’ve modified.
* Fix grammarJakub Wilk2016-05-251-3/+3
| | | | | "allow" is a transitive verb, which requires an object, so "allow to <verb>" is ungrammatical.
* Updated changelog from last few mergesIan Lee2016-02-241-0/+10
|
* Updated source code links to point to new repository name; issue #466 / #481Ian Lee2016-02-221-0/+4
|
* Incremented version number marking new work after 1.7 releaseIan Lee2016-02-161-0/+3
|
* Changed to make new release 1.7 rather than 1.6.3Ian Lee2016-01-121-1/+1
| | | | See discussion in #469
* Added missing changelog entries.Ian Lee2016-01-121-1/+3
|
* Updated changelog, leaving date as unreleased for the momentIan Lee2016-01-111-1/+11
|
* Reverted fix for #368 which had unintended repurcussions in flake8 and other ↵Ian Lee2015-03-171-0/+6
| | | | | | | places. This fix reverts to the parsing of user config (~/.config/pep8), then local directory config files, and finally overrides with cli options as was the behavior back in 1.5.7
* Bump version post releaseIan Lee2015-03-131-0/+3
|