Skip to content

Commit f0655cc

Browse files
committed
Bumping version for new minor release and adding changelog for various recent merged PRs
1 parent a9a5bbb commit f0655cc

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22

3-
## Version 0.7.3
4-
3+
## Version 0.7.4
4+
* [#88](https://github.com/landscapeio/pylint-django/pull/88) Fixed builds with Django 1.10 (thanks to [federicobond](https://github.com/federicobond))
5+
* [#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))
6+
* [#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))
7+
* [#70](https://github.com/landscapeio/pylint-django/pull/70) Updating to handle newer pylint/astroid versions (thanks to [iXce](https://github.com/iXce))
58

69
## Version 0.7.2
710
* [#76](https://github.com/landscapeio/pylint-django/pull/76) Better handling of mongoengine querysetmanager

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import sys
66

77

8-
_version = '0.7.3'
8+
_version = '0.7.4'
99
_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
1010

1111
_short_description = "pylint-django is a Pylint plugin to aid Pylint in recognising and understanding" \

test/test_func.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ def suite():
6969
return unittest.TestSuite([unittest.makeSuite(test, suiteClass=unittest.TestSuite)
7070
for test in test_list])
7171

72-
if __name__=='__main__':
72+
if __name__ == '__main__':
7373
unittest.main(defaultTest='suite')

0 commit comments

Comments
 (0)