Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit fbd7f30

Browse files
committed
Bump version to 1.0.0, prepare for release.
1 parent 289e7ef commit fbd7f30

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

docs/release_notes.rst

+18-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
Release Notes
22
=============
33

4+
**pydocstyle** version numbers follow the
5+
`Semantic Versioning <http://semver.org/>`_ specification.
46

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!
713

814
New Features
915

@@ -14,7 +20,11 @@ New Features
1420
underscore and if their parent class is public, recursively (#13, #146).
1521

1622
* 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).
1828

1929
Bug Fixes
2030

@@ -24,6 +34,11 @@ Bug Fixes
2434
* Fixed a bug where D202 was falsely reported when a function with just a
2535
docstring and no content was followed by a comment (#165).
2636

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+
2742

2843
Older Versions
2944
==============

docs/snippets/config.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ the default configuration.
1515
.. deprecated::
1616

1717
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.
2121

2222
Available Options
2323
#################

src/pydocstyle.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def next(obj, default=nothing):
5656
tokenize_open = open
5757

5858

59-
__version__ = '1.0.0a0'
59+
__version__ = '1.0.0'
6060
__all__ = ('check',)
6161

6262
NO_VIOLATIONS_RETURN_CODE = 0
@@ -783,9 +783,8 @@ class ConfigurationParser(object):
783783
'tox.ini',
784784
'.pydocstyle',
785785
'.pydocstylerc',
786-
# The following are deprecated, but remain for backwards compatibility.
786+
# The following is deprecated, but remains for backwards compatibility.
787787
'.pep257',
788-
'.pep257rc',
789788
)
790789

791790
POSSIBLE_SECTION_NAMES = ('pydocstyle', 'pep257')

0 commit comments

Comments
 (0)