Skip to content

Commit

Permalink
bumped version to v0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
caronc committed Jan 31, 2021
1 parent 1ab0784 commit 6682a03
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ __pycache__
build/
dist/
ultrasync.egg-info/
.eggs/
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2019 Chris Caron <lead2gold@gmail.com>
# Copyright (C) 2021 Chris Caron <lead2gold@gmail.com>
# All rights reserved.
#
# This code is licensed under the MIT License.
Expand Down Expand Up @@ -46,13 +46,14 @@

setup(
name='ultrasync',
version='0.9.2',
description='Wrapper to Hills/Interlogix UltraSync ComNav/ZeroWire Hub',
version='0.9.3',
description='Wrapper to XGen/Hills/Interlogix NX-595E/UltraSync ZeroWire',
license='MIT',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/caronc/ultrasync',
keywords='Hills ComNav Interlogix UltraSync ZeroWire Security Panel',
keywords='XGen Hills ComNav Interlogix UltraSync NX-595E ZeroWire '
'Security Panel',
author='Chris Caron',
author_email='lead2gold@gmail.com',
packages=find_packages(),
Expand All @@ -70,7 +71,7 @@
'Topic :: Software Development :: Libraries :: Application Frameworks',
),
entry_points={'console_scripts': console_scripts},
python_requires='>=3.4',
python_requires='>=3.7',
setup_requires=['pytest-runner'],
tests_require=open('dev-requirements.txt').readlines(),
)
4 changes: 2 additions & 2 deletions ultrasync/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
# THE SOFTWARE.

__title__ = 'ultrasync'
__version__ = '0.9.2'
__version__ = '0.9.3'
__author__ = 'Chris Caron'
__license__ = 'MIT'
__copywrite__ = 'Copyright (C) 2020 Chris Caron <lead2gold@gmail.com>'
__copywrite__ = 'Copyright (C) 2021 Chris Caron <lead2gold@gmail.com>'
__email__ = 'lead2gold@gmail.com'
__status__ = 'Production'

Expand Down

0 comments on commit 6682a03

Please sign in to comment.