This repository was archived by the owner on Nov 3, 2023. It is now read-only.
File tree 3 files changed +23
-9
lines changed
3 files changed +23
-9
lines changed Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ **pydocstyle ** version numbers follow the
5
+ `Semantic Versioning <http://semver.org/ >`_ specification.
4
6
5
- Current Development Version
6
- ---------------------------
7
+ 1.0.0 - January 30th, 2016
8
+ --------------------------
9
+
10
+ Major Updates
11
+
12
+ * The project was renamed to **pydocstyle ** and the new release will be 1.0.0!
7
13
8
14
New Features
9
15
@@ -14,7 +20,11 @@ New Features
14
20
underscore and if their parent class is public, recursively (#13, #146).
15
21
16
22
* Added the D403 error code - "First word of the first line should be
17
- properly capitalized". This new error is turned on by default (#164, #165).
23
+ properly capitalized". This new error is turned on by default (#164, #165,
24
+ #170).
25
+
26
+ * Added support for ``.pydocstylerc `` and as configuration file name
27
+ (#140, #173).
18
28
19
29
Bug Fixes
20
30
@@ -24,6 +34,11 @@ Bug Fixes
24
34
* Fixed a bug where D202 was falsely reported when a function with just a
25
35
docstring and no content was followed by a comment (#165).
26
36
37
+ * Fixed wrong ``__all__ `` definition in main module (#150, #156).
38
+
39
+ * Fixed a bug where an ``AssertionError `` could occur when parsing
40
+ ``__future__ `` imports (#154).
41
+
27
42
28
43
Older Versions
29
44
==============
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ the default configuration.
15
15
.. deprecated ::
16
16
17
17
For backwards compatibility purposes, **pydocstyle ** supports configuration
18
- files named ``.pep257 `` and `` .pep257rc `` , as well as section header
19
- `` [pep257] ``. However, these are considered deprecated and support will be
20
- removed in version 2.0.0 .
18
+ files named ``.pep257 ``, as well as section header `` [pep257] ``. However,
19
+ these are considered deprecated and support will be removed in the next
20
+ major version.
21
21
22
22
Available Options
23
23
#################
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ def next(obj, default=nothing):
56
56
tokenize_open = open
57
57
58
58
59
- __version__ = '1.0.0a0 '
59
+ __version__ = '1.0.0 '
60
60
__all__ = ('check' ,)
61
61
62
62
NO_VIOLATIONS_RETURN_CODE = 0
@@ -783,9 +783,8 @@ class ConfigurationParser(object):
783
783
'tox.ini' ,
784
784
'.pydocstyle' ,
785
785
'.pydocstylerc' ,
786
- # The following are deprecated, but remain for backwards compatibility.
786
+ # The following is deprecated, but remains for backwards compatibility.
787
787
'.pep257' ,
788
- '.pep257rc' ,
789
788
)
790
789
791
790
POSSIBLE_SECTION_NAMES = ('pydocstyle' , 'pep257' )
You can’t perform that action at this time.
0 commit comments