Skip to content

Commit

Permalink
Release v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Meisterschueler committed Jun 5, 2017
1 parent e7cc73b commit d0044de
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGELOG

## Unreleased

## 0.7.1 - 2017-06-05
- parser: Bugfix, error_count in aircraft beacon is a int

## 0.7.0 - 2017-06-04
Expand Down
2 changes: 1 addition & 1 deletion ogn/client/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

APRS_APP_NAME = 'python-ogn-client'

PACKAGE_VERSION = '0.7.0'
PACKAGE_VERSION = '0.7.1'
APRS_APP_VER = PACKAGE_VERSION[:3]

APRS_KEEPALIVE_TIME = 240
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
extras_require={
'dev': [
'nose==1.3.7',
'coveralls==0.4.4',
'flake8==2.5.0'
'coveralls==1.1',
'flake8==3.3.0'
]
},
zip_safe=False
Expand Down
1 change: 1 addition & 0 deletions tests/parser/test_aircraft_beacon.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@ def test_v026(self):
self.assertIsNotNone(aircraft_beacon_triple)
self.assertIsNotNone(aircraft_beacon_single)


if __name__ == '__main__':
unittest.main()
1 change: 1 addition & 0 deletions tests/parser/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ def test_createTimestamp(self):
with self.assertRaises(AmbigousTimeError):
createTimestamp(test[0], reference_date=test[1], reference_time=test[2])


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

0 comments on commit d0044de

Please sign in to comment.