We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b6e3db commit 62c0a7fCopy full SHA for 62c0a7f
PyDAQmx/__init__.py
@@ -24,7 +24,7 @@
24
globals()[new_name] = globals()[name]
25
26
27
-__version_info__ = (1, 4)
+__version_info__ = (1, 4, 2)
28
__version__ = '.'.join(str(num) for num in __version_info__)
29
30
__author__ =u'Pierre Cladé'
setup.py
@@ -7,7 +7,7 @@
7
from setuptools import setup
8
from setuptools.command.test import test as TestCommand
9
10
-version = '1.4.1'
+version = '1.4.2'
11
12
import os
13
directory = os.path.split(os.path.realpath(__file__))[0]
@@ -113,6 +113,7 @@ def run_tests(self):
113
===============
114
Main changes:
115
116
+* 1.4.2 Proper version string
117
* 1.4.1 NIDAQmx Base supported on 64bits linux
118
* 1.4 Many small improvements
119
* 1.3.2 bug fix
0 commit comments