File tree 2 files changed +14
-11
lines changed
2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- v1.1.0-dev (unreleased )
5
- -----------------------
4
+ v1.1.0 (2019-01-11 )
5
+ -------------------
6
6
7
7
New
8
8
~~~
9
9
10
- - Add ``RequireForeignKey `` rule.
10
+ - Added ``RequireForeignKey `` rule.
11
11
12
12
Changes
13
13
~~~~~~~
@@ -22,16 +22,16 @@ Fixes
22
22
~~~~~
23
23
24
24
- Support DOS ``\r\n `` line-endings for reporting issue location.
25
- - Fix calls to logger to correctly report module.
25
+ - Fixed calls to logger to correctly report module.
26
26
27
27
v1.0.0 (2019-01-05)
28
28
-------------------
29
29
30
30
New
31
31
~~~
32
- - Added -e, --explain to print out detailed explanation of why a
32
+ - Added `` -e, --explain `` to print out detailed explanation of why a
33
33
message was raised.
34
- - Added -r, --reporter to override reporter on command line.
34
+ - Added `` -r, --reporter `` to override reporter on command line.
35
35
- Added support for reading from stdin.
36
36
- Added ``full `` preset.
37
37
- Added ``Severity `` enum for LintIssues.
42
42
43
43
Changes
44
44
~~~~~~~
45
- - Improved existing API documentation with type signatures and examples.
46
- - Removed BaseRule.MESSAGES in favor of squabble.message.Message
45
+ - Improved existing API documentation with type signatures and
46
+ examples.
47
+ - Removed ``BaseRule.MESSAGES `` in favor of
48
+ ``squabble.message.Message ``.
47
49
48
50
v0.1.0 (2018-12-27)
49
51
-------------------
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import setup , find_packages
4
4
5
- __version__ = '1.1.0rc1 '
5
+ __version__ = '1.1.0 '
6
6
7
7
8
8
readme_path = os .path .join (os .path .dirname (__file__ ), 'README.rst' )
30
30
'colorama==0.4.1'
31
31
],
32
32
classifiers = [
33
- 'Development Status :: 4 - Beta ' ,
33
+ 'Development Status :: 5 - Production/Stable ' ,
34
34
'Programming Language :: Python :: 3 :: Only' ,
35
- 'Programming Language :: SQL'
35
+ 'Programming Language :: SQL' ,
36
+ 'Topic :: Utilities' ,
36
37
]
37
38
)
You can’t perform that action at this time.
0 commit comments