Skip to content

Commit 62c0a7f

Browse files
committed
Version string is now the same in setup.py and __init__.py
1 parent 0b6e3db commit 62c0a7f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

PyDAQmx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
globals()[new_name] = globals()[name]
2525

2626

27-
__version_info__ = (1, 4)
27+
__version_info__ = (1, 4, 2)
2828
__version__ = '.'.join(str(num) for num in __version_info__)
2929

3030
__author__ =u'Pierre Cladé'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools import setup
88
from setuptools.command.test import test as TestCommand
99

10-
version = '1.4.1'
10+
version = '1.4.2'
1111

1212
import os
1313
directory = os.path.split(os.path.realpath(__file__))[0]
@@ -113,6 +113,7 @@ def run_tests(self):
113113
===============
114114
Main changes:
115115
116+
* 1.4.2 Proper version string
116117
* 1.4.1 NIDAQmx Base supported on 64bits linux
117118
* 1.4 Many small improvements
118119
* 1.3.2 bug fix

0 commit comments

Comments
 (0)