Skip to content

Commit dbc229a

Browse files
committed
v1.1.0
1 parent b8444ae commit dbc229a

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

CHANGELOG.rst

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Changelog
22
=========
33

4-
v1.1.0-dev (unreleased)
5-
-----------------------
4+
v1.1.0 (2019-01-11)
5+
-------------------
66

77
New
88
~~~
99

10-
- Add ``RequireForeignKey`` rule.
10+
- Added ``RequireForeignKey`` rule.
1111

1212
Changes
1313
~~~~~~~
@@ -22,16 +22,16 @@ Fixes
2222
~~~~~
2323

2424
- 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.
2626

2727
v1.0.0 (2019-01-05)
2828
-------------------
2929

3030
New
3131
~~~
32-
- Added -e, --explain to print out detailed explanation of why a
32+
- Added ``-e, --explain`` to print out detailed explanation of why a
3333
message was raised.
34-
- Added -r, --reporter to override reporter on command line.
34+
- Added ``-r, --reporter`` to override reporter on command line.
3535
- Added support for reading from stdin.
3636
- Added ``full`` preset.
3737
- Added ``Severity`` enum for LintIssues.
@@ -42,8 +42,10 @@ New
4242

4343
Changes
4444
~~~~~~~
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``.
4749

4850
v0.1.0 (2018-12-27)
4951
-------------------

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import setup, find_packages
44

5-
__version__ = '1.1.0rc1'
5+
__version__ = '1.1.0'
66

77

88
readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
@@ -30,8 +30,9 @@
3030
'colorama==0.4.1'
3131
],
3232
classifiers=[
33-
'Development Status :: 4 - Beta',
33+
'Development Status :: 5 - Production/Stable',
3434
'Programming Language :: Python :: 3 :: Only',
35-
'Programming Language :: SQL'
35+
'Programming Language :: SQL',
36+
'Topic :: Utilities',
3637
]
3738
)

0 commit comments

Comments
 (0)