Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
erik committed Jan 11, 2019
1 parent b8444ae commit dbc229a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
18 changes: 10 additions & 8 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Changelog
=========

v1.1.0-dev (unreleased)
-----------------------
v1.1.0 (2019-01-11)
-------------------

New
~~~

- Add ``RequireForeignKey`` rule.
- Added ``RequireForeignKey`` rule.

Changes
~~~~~~~
Expand All @@ -22,16 +22,16 @@ Fixes
~~~~~

- Support DOS ``\r\n`` line-endings for reporting issue location.
- Fix calls to logger to correctly report module.
- Fixed calls to logger to correctly report module.

v1.0.0 (2019-01-05)
-------------------

New
~~~
- Added -e, --explain to print out detailed explanation of why a
- Added ``-e, --explain`` to print out detailed explanation of why a
message was raised.
- Added -r, --reporter to override reporter on command line.
- Added ``-r, --reporter`` to override reporter on command line.
- Added support for reading from stdin.
- Added ``full`` preset.
- Added ``Severity`` enum for LintIssues.
Expand All @@ -42,8 +42,10 @@ New

Changes
~~~~~~~
- Improved existing API documentation with type signatures and examples.
- Removed BaseRule.MESSAGES in favor of squabble.message.Message
- Improved existing API documentation with type signatures and
examples.
- Removed ``BaseRule.MESSAGES`` in favor of
``squabble.message.Message``.

v0.1.0 (2018-12-27)
-------------------
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = '1.1.0rc1'
__version__ = '1.1.0'


readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
Expand Down Expand Up @@ -30,8 +30,9 @@
'colorama==0.4.1'
],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: SQL'
'Programming Language :: SQL',
'Topic :: Utilities',
]
)

0 comments on commit dbc229a

Please sign in to comment.