Skip to content

Commit

Permalink
Bumping version for new minor release and adding changelog for variou…
Browse files Browse the repository at this point in the history
…s recent merged PRs
  • Loading branch information
carlio committed Mar 8, 2017
1 parent a9a5bbb commit f0655cc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Changelog

## Version 0.7.3

## Version 0.7.4
* [#88](https://github.com/landscapeio/pylint-django/pull/88) Fixed builds with Django 1.10 (thanks to [federicobond](https://github.com/federicobond))
* [#91](https://github.com/landscapeio/pylint-django/pull/91) Fixed race condition when running with pylint parallel execution mode (thanks to [jeremycarroll](https://github.com/jeremycarroll))
* [#64](https://github.com/landscapeio/pylint-django/issues/64) "Meta is old style class" now suppressed on BaseSerializer too (thanks to [unklphil](https://github.com/unklphil))
* [#70](https://github.com/landscapeio/pylint-django/pull/70) Updating to handle newer pylint/astroid versions (thanks to [iXce](https://github.com/iXce))

## Version 0.7.2
* [#76](https://github.com/landscapeio/pylint-django/pull/76) Better handling of mongoengine querysetmanager
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import sys


_version = '0.7.3'
_version = '0.7.4'
_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])

_short_description = "pylint-django is a Pylint plugin to aid Pylint in recognising and understanding" \
Expand Down
2 changes: 1 addition & 1 deletion test/test_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ def suite():
return unittest.TestSuite([unittest.makeSuite(test, suiteClass=unittest.TestSuite)
for test in test_list])

if __name__=='__main__':
if __name__ == '__main__':
unittest.main(defaultTest='suite')

0 comments on commit f0655cc

Please sign in to comment.