diff --git a/CHANGELOG.md b/CHANGELOG.md index 4aaa7dd02..4f116ecfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -* [Unreleased](#unreleased) +* [1.3.3](#133---2021-02-26) * [1.3.2](#132---2020-09-18) * [1.3.1](#131---2020-06-08) * [1.3.0](#130---2020-05-21) @@ -25,58 +25,28 @@ All notable changes to this project will be documented in this file. -## Unreleased -* ### ALL - * #### Added - * #### Changed - * #### Removed +## 1.3.3 - 2021-02-26 * ### `nidcpower` (NI-DCPower) * #### Added * API parity with NI-DCPower 20.6.0 by adding Merged Channels and Shutdown Triggers support. The following properties are added: * `merged_channels` * `digital_edge_shutdown_trigger_input_terminal` * `shutdown_trigger_type` - * #### Changed - * #### Removed * ### `nidigital` (NI-Digital Pattern Driver) * #### Added - * API reference documentation and API usage examples + * 1.0.0 release: + * API reference documentation and API usage examples * API parity with NI-Digital Pattern Driver 20.6.0 by adding support for configuration of frequency counter measurement mode. The following properties are added: * `frequency_counter_measurement_mode` * `frequency_counter_hysteresis_enabled` - * #### Changed - * #### Removed -* ### `nidmm` (NI-DMM) - * #### Added - * #### Changed - * #### Removed * ### `nifgen` (NI-FGEN) * #### Added - *Added the nifgen_trigger.py example to demonstrate pulling a trigger from another device. - * #### Changed - * #### Removed -* ### `nimodinst` (NI-ModInst) - * #### Added - * #### Changed - * #### Removed -* ### `niscope` (NI-SCOPE) - * #### Added - * #### Changed - * #### Removed -* ### `niswitch` (NI-SWITCH) - * #### Added - * #### Changed - * #### Removed -* ### `nise` (NI Switch Executive) - * #### Added - * #### Changed - * #### Removed + * nifgen_trigger.py example to demonstrate pulling a trigger from another device. * ### `nitclk` (NI-TClk) * #### Added - * Added nitclk_niscope_synchronize_with_trigger.py to demonstrate homogenous triggering. - * #### Changed + * nitclk_niscope_synchronize_with_trigger.py to demonstrate homogenous triggering. * #### Removed - * Removed nitclk_configure.py as it did not do anything. + * nitclk_configure.py as it did not do anything. ## 1.3.2 - 2020-09-18 diff --git a/LATEST_RELEASE b/LATEST_RELEASE index 1892b9267..31e5c8434 100644 --- a/LATEST_RELEASE +++ b/LATEST_RELEASE @@ -1 +1 @@ -1.3.2 +1.3.3 diff --git a/README.rst b/README.rst index 8c23168a4..2bd8236df 100644 --- a/README.rst +++ b/README.rst @@ -109,7 +109,7 @@ NI-Digital Pattern Driver Python API Status +---------------------------------------+--------------------------+ | NI-Digital Pattern Driver (nidigital) | | +=======================================+==========================+ -| Driver Version Tested Against | 19.0.1 | +| Driver Version Tested Against | 20.6.0 | +---------------------------------------+--------------------------+ | PyPI Version | |nidigitalLatestVersion| | +---------------------------------------+--------------------------+ diff --git a/VERSION b/VERSION index 5dbd3c702..785cda807 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.3.dev0 \ No newline at end of file +1.3.3 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 636ddc5f3..e8b94ee92 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '1.3.3.dev0' +release = '1.3.3' # The short X.Y version. version = release[:3] diff --git a/docs/nidcpower/examples.rst b/docs/nidcpower/examples.rst index 74076797d..5a9544665 100644 --- a/docs/nidcpower/examples.rst +++ b/docs/nidcpower/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nidcpower examples for latest version here `_ +`You can download all nidcpower examples here `_ nidcpower_advanced_sequence.py ------------------------------ @@ -10,7 +10,7 @@ nidcpower_advanced_sequence.py :language: python :linenos: :encoding: utf8 - :caption: `(nidcpower_advanced_sequence.py) `_ + :caption: `(nidcpower_advanced_sequence.py) `_ nidcpower_measure_record.py --------------------------- @@ -19,7 +19,7 @@ nidcpower_measure_record.py :language: python :linenos: :encoding: utf8 - :caption: `(nidcpower_measure_record.py) `_ + :caption: `(nidcpower_measure_record.py) `_ nidcpower_source_delay_measure.py --------------------------------- @@ -28,5 +28,5 @@ nidcpower_source_delay_measure.py :language: python :linenos: :encoding: utf8 - :caption: `(nidcpower_source_delay_measure.py) `_ + :caption: `(nidcpower_source_delay_measure.py) `_ diff --git a/docs/nidcpower/installation.inc b/docs/nidcpower/installation.inc index 2a869b99e..6d02320a2 100644 --- a/docs/nidcpower/installation.inc +++ b/docs/nidcpower/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nidcpower module, you must install the NI-DCPower The nimi-python modules (i.e. for **NI-DCPower**) can be installed with `pip `_:: - $ python -m pip install nidcpower + $ python -m pip install nidcpower~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/nidigital/examples.rst b/docs/nidigital/examples.rst index 0451292b4..c6fc2ba39 100644 --- a/docs/nidigital/examples.rst +++ b/docs/nidigital/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nidigital examples for latest version here `_ +`You can download all nidigital examples here `_ nidigital_burst_with_start_trigger.py ------------------------------------- @@ -10,7 +10,7 @@ nidigital_burst_with_start_trigger.py :language: python :linenos: :encoding: utf8 - :caption: `(nidigital_burst_with_start_trigger.py) `_ + :caption: `(nidigital_burst_with_start_trigger.py) `_ nidigital_configure_time_set_and_voltage_levels.py -------------------------------------------------- @@ -19,7 +19,7 @@ nidigital_configure_time_set_and_voltage_levels.py :language: python :linenos: :encoding: utf8 - :caption: `(nidigital_configure_time_set_and_voltage_levels.py) `_ + :caption: `(nidigital_configure_time_set_and_voltage_levels.py) `_ nidigital_ppmu_source_and_measure.py ------------------------------------ @@ -28,5 +28,5 @@ nidigital_ppmu_source_and_measure.py :language: python :linenos: :encoding: utf8 - :caption: `(nidigital_ppmu_source_and_measure.py) `_ + :caption: `(nidigital_ppmu_source_and_measure.py) `_ diff --git a/docs/nidigital/installation.inc b/docs/nidigital/installation.inc index 71ad48f73..7798582c5 100644 --- a/docs/nidigital/installation.inc +++ b/docs/nidigital/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nidigital module, you must install the NI-Digital The nimi-python modules (i.e. for **NI-Digital Pattern Driver**) can be installed with `pip `_:: - $ python -m pip install nidigital + $ python -m pip install nidigital~=1.0.0 Or **easy_install** from `setuptools `_:: diff --git a/docs/nidigital/status.inc b/docs/nidigital/status.inc index 6f5c222f3..68858f365 100644 --- a/docs/nidigital/status.inc +++ b/docs/nidigital/status.inc @@ -5,7 +5,7 @@ NI-Digital Pattern Driver Python API Status +---------------------------------------+--------------------------+ | NI-Digital Pattern Driver (nidigital) | | +=======================================+==========================+ -| Driver Version Tested Against | 19.0.1 | +| Driver Version Tested Against | 20.6.0 | +---------------------------------------+--------------------------+ | PyPI Version | |nidigitalLatestVersion| | +---------------------------------------+--------------------------+ diff --git a/docs/nidmm/examples.rst b/docs/nidmm/examples.rst index b4e4b1ae1..b462e76a8 100644 --- a/docs/nidmm/examples.rst +++ b/docs/nidmm/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nidmm examples for latest version here `_ +`You can download all nidmm examples here `_ nidmm_fetch_waveform.py ----------------------- @@ -10,7 +10,7 @@ nidmm_fetch_waveform.py :language: python :linenos: :encoding: utf8 - :caption: `(nidmm_fetch_waveform.py) `_ + :caption: `(nidmm_fetch_waveform.py) `_ nidmm_measurement.py -------------------- @@ -19,7 +19,7 @@ nidmm_measurement.py :language: python :linenos: :encoding: utf8 - :caption: `(nidmm_measurement.py) `_ + :caption: `(nidmm_measurement.py) `_ nidmm_multi_point_measurement.py -------------------------------- @@ -28,5 +28,5 @@ nidmm_multi_point_measurement.py :language: python :linenos: :encoding: utf8 - :caption: `(nidmm_multi_point_measurement.py) `_ + :caption: `(nidmm_multi_point_measurement.py) `_ diff --git a/docs/nidmm/installation.inc b/docs/nidmm/installation.inc index 74c3f78a3..aba7eff08 100644 --- a/docs/nidmm/installation.inc +++ b/docs/nidmm/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nidmm module, you must install the NI-DMM runtime The nimi-python modules (i.e. for **NI-DMM**) can be installed with `pip `_:: - $ python -m pip install nidmm + $ python -m pip install nidmm~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/nifgen/examples.rst b/docs/nifgen/examples.rst index c64afb76d..3a1201830 100644 --- a/docs/nifgen/examples.rst +++ b/docs/nifgen/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nifgen examples for latest version here `_ +`You can download all nifgen examples here `_ nifgen_arb_waveform.py ---------------------- @@ -10,7 +10,7 @@ nifgen_arb_waveform.py :language: python :linenos: :encoding: utf8 - :caption: `(nifgen_arb_waveform.py) `_ + :caption: `(nifgen_arb_waveform.py) `_ nifgen_script.py ---------------- @@ -19,7 +19,7 @@ nifgen_script.py :language: python :linenos: :encoding: utf8 - :caption: `(nifgen_script.py) `_ + :caption: `(nifgen_script.py) `_ nifgen_standard_function.py --------------------------- @@ -28,7 +28,7 @@ nifgen_standard_function.py :language: python :linenos: :encoding: utf8 - :caption: `(nifgen_standard_function.py) `_ + :caption: `(nifgen_standard_function.py) `_ nifgen_trigger.py ----------------- @@ -37,5 +37,5 @@ nifgen_trigger.py :language: python :linenos: :encoding: utf8 - :caption: `(nifgen_trigger.py) `_ + :caption: `(nifgen_trigger.py) `_ diff --git a/docs/nifgen/installation.inc b/docs/nifgen/installation.inc index 61543d8cf..c61e9003e 100644 --- a/docs/nifgen/installation.inc +++ b/docs/nifgen/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nifgen module, you must install the NI-FGEN runti The nimi-python modules (i.e. for **NI-FGEN**) can be installed with `pip `_:: - $ python -m pip install nifgen + $ python -m pip install nifgen~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/nimodinst/examples.rst b/docs/nimodinst/examples.rst index 0e85676c8..3c8522dfe 100644 --- a/docs/nimodinst/examples.rst +++ b/docs/nimodinst/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nimodinst examples for latest version here `_ +`You can download all nimodinst examples here `_ nimodinst_all_devices.py ------------------------ @@ -10,5 +10,5 @@ nimodinst_all_devices.py :language: python :linenos: :encoding: utf8 - :caption: `(nimodinst_all_devices.py) `_ + :caption: `(nimodinst_all_devices.py) `_ diff --git a/docs/nimodinst/installation.inc b/docs/nimodinst/installation.inc index 267a8ae06..ca9828588 100644 --- a/docs/nimodinst/installation.inc +++ b/docs/nimodinst/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nimodinst module, you must install the NI-ModInst The nimi-python modules (i.e. for **NI-ModInst**) can be installed with `pip `_:: - $ python -m pip install nimodinst + $ python -m pip install nimodinst~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/niscope/examples.rst b/docs/niscope/examples.rst index 67431bfa6..e397504c2 100644 --- a/docs/niscope/examples.rst +++ b/docs/niscope/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all niscope examples for latest version here `_ +`You can download all niscope examples here `_ niscope_fetch.py ---------------- @@ -10,7 +10,7 @@ niscope_fetch.py :language: python :linenos: :encoding: utf8 - :caption: `(niscope_fetch.py) `_ + :caption: `(niscope_fetch.py) `_ niscope_fetch_forever.py ------------------------ @@ -19,7 +19,7 @@ niscope_fetch_forever.py :language: python :linenos: :encoding: utf8 - :caption: `(niscope_fetch_forever.py) `_ + :caption: `(niscope_fetch_forever.py) `_ niscope_read.py --------------- @@ -28,5 +28,5 @@ niscope_read.py :language: python :linenos: :encoding: utf8 - :caption: `(niscope_read.py) `_ + :caption: `(niscope_read.py) `_ diff --git a/docs/niscope/installation.inc b/docs/niscope/installation.inc index 8abe0acfb..c9dc875bc 100644 --- a/docs/niscope/installation.inc +++ b/docs/niscope/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the niscope module, you must install the NI-SCOPE run The nimi-python modules (i.e. for **NI-SCOPE**) can be installed with `pip `_:: - $ python -m pip install niscope + $ python -m pip install niscope~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/nise/examples.rst b/docs/nise/examples.rst index 6cf364a4d..cf51bfefa 100644 --- a/docs/nise/examples.rst +++ b/docs/nise/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nise examples for latest version here `_ +`You can download all nise examples here `_ nise_basic_example.py --------------------- @@ -10,5 +10,5 @@ nise_basic_example.py :language: python :linenos: :encoding: utf8 - :caption: `(nise_basic_example.py) `_ + :caption: `(nise_basic_example.py) `_ diff --git a/docs/nise/installation.inc b/docs/nise/installation.inc index db6f6a864..8051a6442 100644 --- a/docs/nise/installation.inc +++ b/docs/nise/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nise module, you must install the NI Switch Execu The nimi-python modules (i.e. for **NI Switch Executive**) can be installed with `pip `_:: - $ python -m pip install nise + $ python -m pip install nise~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/niswitch/examples.rst b/docs/niswitch/examples.rst index 6a30e656d..7f39d41b6 100644 --- a/docs/niswitch/examples.rst +++ b/docs/niswitch/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all niswitch examples for latest version here `_ +`You can download all niswitch examples here `_ niswitch_connect_channels.py ---------------------------- @@ -10,7 +10,7 @@ niswitch_connect_channels.py :language: python :linenos: :encoding: utf8 - :caption: `(niswitch_connect_channels.py) `_ + :caption: `(niswitch_connect_channels.py) `_ niswitch_get_device_info.py --------------------------- @@ -19,7 +19,7 @@ niswitch_get_device_info.py :language: python :linenos: :encoding: utf8 - :caption: `(niswitch_get_device_info.py) `_ + :caption: `(niswitch_get_device_info.py) `_ niswitch_relay_control.py ------------------------- @@ -28,5 +28,5 @@ niswitch_relay_control.py :language: python :linenos: :encoding: utf8 - :caption: `(niswitch_relay_control.py) `_ + :caption: `(niswitch_relay_control.py) `_ diff --git a/docs/niswitch/installation.inc b/docs/niswitch/installation.inc index 17a979d27..7321c0d71 100644 --- a/docs/niswitch/installation.inc +++ b/docs/niswitch/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the niswitch module, you must install the NI-SWITCH r The nimi-python modules (i.e. for **NI-SWITCH**) can be installed with `pip `_:: - $ python -m pip install niswitch + $ python -m pip install niswitch~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/docs/nitclk/examples.rst b/docs/nitclk/examples.rst index 24a94e306..5659c84ef 100644 --- a/docs/nitclk/examples.rst +++ b/docs/nitclk/examples.rst @@ -1,7 +1,7 @@ Examples ======== -`You can download all nitclk examples for latest version here `_ +`You can download all nitclk examples here `_ nitclk_niscope_synchronize_with_trigger.py ------------------------------------------ @@ -10,5 +10,5 @@ nitclk_niscope_synchronize_with_trigger.py :language: python :linenos: :encoding: utf8 - :caption: `(nitclk_niscope_synchronize_with_trigger.py) `_ + :caption: `(nitclk_niscope_synchronize_with_trigger.py) `_ diff --git a/docs/nitclk/installation.inc b/docs/nitclk/installation.inc index 54c30bcc0..ae68bfad6 100644 --- a/docs/nitclk/installation.inc +++ b/docs/nitclk/installation.inc @@ -8,7 +8,7 @@ As a prerequisite to using the nitclk module, you must install the NI-TClk runti The nimi-python modules (i.e. for **NI-TClk**) can be installed with `pip `_:: - $ python -m pip install nitclk + $ python -m pip install nitclk~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nidcpower/README.rst b/generated/nidcpower/README.rst index 04df537bb..5d1a407fb 100644 --- a/generated/nidcpower/README.rst +++ b/generated/nidcpower/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the nidcpower module, you must install the NI-DCPower The nimi-python modules (i.e. for **NI-DCPower**) can be installed with `pip `_:: - $ python -m pip install nidcpower + $ python -m pip install nidcpower~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nidcpower/nidcpower/VERSION b/generated/nidcpower/nidcpower/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nidcpower/nidcpower/VERSION +++ b/generated/nidcpower/nidcpower/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nidcpower/nidcpower/__init__.py b/generated/nidcpower/nidcpower/__init__.py index 8026d960f..6d7836715 100644 --- a/generated/nidcpower/nidcpower/__init__.py +++ b/generated/nidcpower/nidcpower/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nidcpower.enums import * # noqa: F403,F401,H303 from nidcpower.errors import DriverWarning # noqa: F401 @@ -64,7 +64,7 @@ def is_venv(): info['driver']['name'] = "NI-DCPower" info['driver']['version'] = driver_version info['module']['name'] = 'nidcpower' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nidcpower/setup.py b/generated/nidcpower/setup.py index af4b43582..daf3bd62e 100644 --- a/generated/nidcpower/setup.py +++ b/generated/nidcpower/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-DCPower Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -51,7 +51,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nidigital/README.rst b/generated/nidigital/README.rst index 82df0bcca..91d55dac1 100644 --- a/generated/nidigital/README.rst +++ b/generated/nidigital/README.rst @@ -70,7 +70,7 @@ NI-Digital Pattern Driver Python API Status +---------------------------------------+--------------------------+ | NI-Digital Pattern Driver (nidigital) | | +=======================================+==========================+ -| Driver Version Tested Against | 19.0.1 | +| Driver Version Tested Against | 20.6.0 | +---------------------------------------+--------------------------+ | PyPI Version | |nidigitalLatestVersion| | +---------------------------------------+--------------------------+ @@ -112,7 +112,7 @@ As a prerequisite to using the nidigital module, you must install the NI-Digital The nimi-python modules (i.e. for **NI-Digital Pattern Driver**) can be installed with `pip `_:: - $ python -m pip install nidigital + $ python -m pip install nidigital~=1.0.0 Or **easy_install** from `setuptools `_:: diff --git a/generated/nidigital/nidigital/VERSION b/generated/nidigital/nidigital/VERSION index d97147aaa..5bc4571bb 100644 --- a/generated/nidigital/nidigital/VERSION +++ b/generated/nidigital/nidigital/VERSION @@ -1,2 +1,2 @@ -0.9.3.dev0 +1.0.0 diff --git a/generated/nidigital/nidigital/__init__.py b/generated/nidigital/nidigital/__init__.py index aca93fb60..29d999872 100644 --- a/generated/nidigital/nidigital/__init__.py +++ b/generated/nidigital/nidigital/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '0.9.3.dev0' +__version__ = '1.0.0' from nidigital.enums import * # noqa: F403,F401,H303 from nidigital.errors import DriverWarning # noqa: F401 @@ -66,7 +66,7 @@ def is_venv(): info['driver']['name'] = "NI-Digital Pattern Driver" info['driver']['version'] = driver_version info['module']['name'] = 'nidigital' - info['module']['version'] = "0.9.3.dev0" + info['module']['version'] = "1.0.0" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nidigital/setup.py b/generated/nidigital/setup.py index 86d50281e..317e81129 100644 --- a/generated/nidigital/setup.py +++ b/generated/nidigital/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='0.9.3.dev0', + version='1.0.0', description='NI-Digital Pattern Driver Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -52,7 +52,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nidmm/README.rst b/generated/nidmm/README.rst index 2bce2f00d..bb275cfe3 100644 --- a/generated/nidmm/README.rst +++ b/generated/nidmm/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the nidmm module, you must install the NI-DMM runtime The nimi-python modules (i.e. for **NI-DMM**) can be installed with `pip `_:: - $ python -m pip install nidmm + $ python -m pip install nidmm~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nidmm/nidmm/VERSION b/generated/nidmm/nidmm/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nidmm/nidmm/VERSION +++ b/generated/nidmm/nidmm/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nidmm/nidmm/__init__.py b/generated/nidmm/nidmm/__init__.py index c11dbf49c..891d353ce 100644 --- a/generated/nidmm/nidmm/__init__.py +++ b/generated/nidmm/nidmm/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nidmm.enums import * # noqa: F403,F401,H303 from nidmm.errors import DriverWarning # noqa: F401 @@ -64,7 +64,7 @@ def is_venv(): info['driver']['name'] = "NI-DMM" info['driver']['version'] = driver_version info['module']['name'] = 'nidmm' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nidmm/setup.py b/generated/nidmm/setup.py index 881e876d7..a4a531fcd 100644 --- a/generated/nidmm/setup.py +++ b/generated/nidmm/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-DMM Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -51,7 +51,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nifake/nifake/VERSION b/generated/nifake/nifake/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nifake/nifake/VERSION +++ b/generated/nifake/nifake/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nifake/nifake/__init__.py b/generated/nifake/nifake/__init__.py index 81a1a19de..d7f2bd87c 100644 --- a/generated/nifake/nifake/__init__.py +++ b/generated/nifake/nifake/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nifake.enums import * # noqa: F403,F401,H303 from nifake.errors import DriverWarning # noqa: F401 @@ -68,7 +68,7 @@ def is_venv(): info['driver']['name'] = "NI-FAKE" info['driver']['version'] = driver_version info['module']['name'] = 'nifake' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nifake/setup.py b/generated/nifake/setup.py index df9fe08b6..295c40459 100644 --- a/generated/nifake/setup.py +++ b/generated/nifake/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-FAKE Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -52,7 +52,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nifgen/README.rst b/generated/nifgen/README.rst index 5c0ce7051..032742e2b 100644 --- a/generated/nifgen/README.rst +++ b/generated/nifgen/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the nifgen module, you must install the NI-FGEN runti The nimi-python modules (i.e. for **NI-FGEN**) can be installed with `pip `_:: - $ python -m pip install nifgen + $ python -m pip install nifgen~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nifgen/nifgen/VERSION b/generated/nifgen/nifgen/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nifgen/nifgen/VERSION +++ b/generated/nifgen/nifgen/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nifgen/nifgen/__init__.py b/generated/nifgen/nifgen/__init__.py index a7313c608..83c44149b 100644 --- a/generated/nifgen/nifgen/__init__.py +++ b/generated/nifgen/nifgen/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nifgen.enums import * # noqa: F403,F401,H303 from nifgen.errors import DriverWarning # noqa: F401 @@ -64,7 +64,7 @@ def is_venv(): info['driver']['name'] = "NI-FGEN" info['driver']['version'] = driver_version info['module']['name'] = 'nifgen' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nifgen/setup.py b/generated/nifgen/setup.py index edba7a18f..b12c734fa 100644 --- a/generated/nifgen/setup.py +++ b/generated/nifgen/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-FGEN Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -52,7 +52,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nimodinst/README.rst b/generated/nimodinst/README.rst index 19998d6a6..d4ab68cde 100644 --- a/generated/nimodinst/README.rst +++ b/generated/nimodinst/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the nimodinst module, you must install the NI-ModInst The nimi-python modules (i.e. for **NI-ModInst**) can be installed with `pip `_:: - $ python -m pip install nimodinst + $ python -m pip install nimodinst~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nimodinst/nimodinst/VERSION b/generated/nimodinst/nimodinst/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nimodinst/nimodinst/VERSION +++ b/generated/nimodinst/nimodinst/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nimodinst/nimodinst/__init__.py b/generated/nimodinst/nimodinst/__init__.py index 6364a9c58..d28bec563 100644 --- a/generated/nimodinst/nimodinst/__init__.py +++ b/generated/nimodinst/nimodinst/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nimodinst.errors import DriverWarning # noqa: F401 from nimodinst.errors import Error # noqa: F401 @@ -63,7 +63,7 @@ def is_venv(): info['driver']['name'] = "NI-ModInst" info['driver']['version'] = driver_version info['module']['name'] = 'nimodinst' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nimodinst/setup.py b/generated/nimodinst/setup.py index 46edd172a..e3adc0041 100644 --- a/generated/nimodinst/setup.py +++ b/generated/nimodinst/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-ModInst Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -51,7 +51,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/niscope/README.rst b/generated/niscope/README.rst index 883c58a15..f0553416d 100644 --- a/generated/niscope/README.rst +++ b/generated/niscope/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the niscope module, you must install the NI-SCOPE run The nimi-python modules (i.e. for **NI-SCOPE**) can be installed with `pip `_:: - $ python -m pip install niscope + $ python -m pip install niscope~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/niscope/niscope/VERSION b/generated/niscope/niscope/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/niscope/niscope/VERSION +++ b/generated/niscope/niscope/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/niscope/niscope/__init__.py b/generated/niscope/niscope/__init__.py index 6397e4b1a..0bf8db29c 100644 --- a/generated/niscope/niscope/__init__.py +++ b/generated/niscope/niscope/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from niscope.enums import * # noqa: F403,F401,H303 from niscope.errors import DriverWarning # noqa: F401 @@ -70,7 +70,7 @@ def is_venv(): info['driver']['name'] = "NI-SCOPE" info['driver']['version'] = driver_version info['module']['name'] = 'niscope' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/niscope/setup.py b/generated/niscope/setup.py index c080de9b5..483e24b25 100644 --- a/generated/niscope/setup.py +++ b/generated/niscope/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-SCOPE Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -52,7 +52,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nise/README.rst b/generated/nise/README.rst index 558f0b3ca..83baecc87 100644 --- a/generated/nise/README.rst +++ b/generated/nise/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the nise module, you must install the NI Switch Execu The nimi-python modules (i.e. for **NI Switch Executive**) can be installed with `pip `_:: - $ python -m pip install nise + $ python -m pip install nise~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nise/nise/VERSION b/generated/nise/nise/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nise/nise/VERSION +++ b/generated/nise/nise/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nise/nise/__init__.py b/generated/nise/nise/__init__.py index 078ead9db..0243e86cc 100644 --- a/generated/nise/nise/__init__.py +++ b/generated/nise/nise/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nise.enums import * # noqa: F403,F401,H303 from nise.errors import DriverWarning # noqa: F401 @@ -64,7 +64,7 @@ def is_venv(): info['driver']['name'] = "NI Switch Executive" info['driver']['version'] = driver_version info['module']['name'] = 'nise' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nise/setup.py b/generated/nise/setup.py index d15d0513f..ba3e4bba5 100644 --- a/generated/nise/setup.py +++ b/generated/nise/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI Switch Executive Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -51,7 +51,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/niswitch/README.rst b/generated/niswitch/README.rst index 41776b9cc..89bc3cf9c 100644 --- a/generated/niswitch/README.rst +++ b/generated/niswitch/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the niswitch module, you must install the NI-SWITCH r The nimi-python modules (i.e. for **NI-SWITCH**) can be installed with `pip `_:: - $ python -m pip install niswitch + $ python -m pip install niswitch~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/niswitch/niswitch/VERSION b/generated/niswitch/niswitch/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/niswitch/niswitch/VERSION +++ b/generated/niswitch/niswitch/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/niswitch/niswitch/__init__.py b/generated/niswitch/niswitch/__init__.py index ffae4c2ad..cf4e4a047 100644 --- a/generated/niswitch/niswitch/__init__.py +++ b/generated/niswitch/niswitch/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from niswitch.enums import * # noqa: F403,F401,H303 from niswitch.errors import DriverWarning # noqa: F401 @@ -64,7 +64,7 @@ def is_venv(): info['driver']['name'] = "NI-SWITCH" info['driver']['version'] = driver_version info['module']['name'] = 'niswitch' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/niswitch/setup.py b/generated/niswitch/setup.py index f7e5af592..f6cc83ead 100644 --- a/generated/niswitch/setup.py +++ b/generated/niswitch/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-SWITCH Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -51,7 +51,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/generated/nitclk/README.rst b/generated/nitclk/README.rst index 62b7a4755..038411953 100644 --- a/generated/nitclk/README.rst +++ b/generated/nitclk/README.rst @@ -112,7 +112,7 @@ As a prerequisite to using the nitclk module, you must install the NI-TClk runti The nimi-python modules (i.e. for **NI-TClk**) can be installed with `pip `_:: - $ python -m pip install nitclk + $ python -m pip install nitclk~=1.3.3 Or **easy_install** from `setuptools `_:: diff --git a/generated/nitclk/nitclk/VERSION b/generated/nitclk/nitclk/VERSION index f3c8bcce5..3f4422390 100644 --- a/generated/nitclk/nitclk/VERSION +++ b/generated/nitclk/nitclk/VERSION @@ -1,2 +1,2 @@ -1.3.3.dev0 +1.3.3 diff --git a/generated/nitclk/nitclk/__init__.py b/generated/nitclk/nitclk/__init__.py index fe6b6546e..5ed02e07f 100644 --- a/generated/nitclk/nitclk/__init__.py +++ b/generated/nitclk/nitclk/__init__.py @@ -2,7 +2,7 @@ # This file was generated -__version__ = '1.3.3.dev0' +__version__ = '1.3.3' from nitclk.errors import DriverWarning # noqa: F401 from nitclk.errors import Error # noqa: F401 @@ -73,7 +73,7 @@ def is_venv(): info['driver']['name'] = "NI-TClk" info['driver']['version'] = driver_version info['module']['name'] = 'nitclk' - info['module']['version'] = "1.3.3.dev0" + info['module']['version'] = "1.3.3" info['python']['version'] = sys.version info['python']['bits'] = '64' if is_python_64bit() else '32' info['python']['is_venv'] = is_venv() diff --git a/generated/nitclk/setup.py b/generated/nitclk/setup.py index f7b77c78b..ca001d747 100644 --- a/generated/nitclk/setup.py +++ b/generated/nitclk/setup.py @@ -29,7 +29,7 @@ def read_contents(file_to_read): setup( name=pypi_name, zip_safe=True, - version='1.3.3.dev0', + version='1.3.3', description='NI-TClk Python API', long_description=read_contents('README.rst'), long_description_content_type='text/x-rst', @@ -51,7 +51,7 @@ def read_contents(file_to_read): tests_require=['pytest'], test_suite='tests', classifiers=[ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Manufacturing", "Intended Audience :: Science/Research", diff --git a/src/nidcpower/metadata/config_addon.py b/src/nidcpower/metadata/config_addon.py index 4e9eeb690..2b529bcd9 100644 --- a/src/nidcpower/metadata/config_addon.py +++ b/src/nidcpower/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.6.0', } diff --git a/src/nidigital/metadata/config_addon.py b/src/nidigital/metadata/config_addon.py index 0c7cde11e..e9f0bb69a 100644 --- a/src/nidigital/metadata/config_addon.py +++ b/src/nidigital/metadata/config_addon.py @@ -1,7 +1,7 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '0.9.3.dev0', - 'latest_runtime_version_tested_against': '19.0.1', + 'module_version': '1.0.0', + 'latest_runtime_version_tested_against': '20.6.0', 'custom_types': [ { 'ctypes_type': '', diff --git a/src/nidmm/metadata/config_addon.py b/src/nidmm/metadata/config_addon.py index 6c576f8bf..d64dd6ee2 100644 --- a/src/nidmm/metadata/config_addon.py +++ b/src/nidmm/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.5.0', } diff --git a/src/nifake/metadata/config_addon.py b/src/nifake/metadata/config_addon.py index 030a0e26c..619c38104 100644 --- a/src/nifake/metadata/config_addon.py +++ b/src/nifake/metadata/config_addon.py @@ -1,4 +1,4 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', } diff --git a/src/nifgen/metadata/config_addon.py b/src/nifgen/metadata/config_addon.py index b0e670e59..536ab80ff 100644 --- a/src/nifgen/metadata/config_addon.py +++ b/src/nifgen/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.0.0', } diff --git a/src/nimodinst/metadata/config_addon.py b/src/nimodinst/metadata/config_addon.py index b0e670e59..536ab80ff 100644 --- a/src/nimodinst/metadata/config_addon.py +++ b/src/nimodinst/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.0.0', } diff --git a/src/niscope/metadata/config_addon.py b/src/niscope/metadata/config_addon.py index b6b536257..5f21ec69e 100644 --- a/src/niscope/metadata/config_addon.py +++ b/src/niscope/metadata/config_addon.py @@ -1,6 +1,6 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.0.0', 'custom_types': [ # Redundant, since waveform_info is also in the base config.py file. See issue 1495 (https://github.com/ni/nimi-python/issues/1495) diff --git a/src/nise/metadata/config_addon.py b/src/nise/metadata/config_addon.py index b0e670e59..536ab80ff 100644 --- a/src/nise/metadata/config_addon.py +++ b/src/nise/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.0.0', } diff --git a/src/niswitch/metadata/config_addon.py b/src/niswitch/metadata/config_addon.py index 6c576f8bf..d64dd6ee2 100644 --- a/src/niswitch/metadata/config_addon.py +++ b/src/niswitch/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.5.0', } diff --git a/src/nitclk/metadata/config_addon.py b/src/nitclk/metadata/config_addon.py index b0e670e59..536ab80ff 100644 --- a/src/nitclk/metadata/config_addon.py +++ b/src/nitclk/metadata/config_addon.py @@ -1,5 +1,5 @@ # We need to maintain the version here since it needs to be updated by the build process on GitHub config_additional_config = { - 'module_version': '1.3.3.dev0', + 'module_version': '1.3.3', 'latest_runtime_version_tested_against': '20.0.0', }