Skip to content

Commit 272fe25

Browse files
authored
Release 1.4.4 (#1942)
* Update CHANGELOG.md for nimi-python 1.4.4 release * Update version to 1.4.4 * update generated files for 1.4.4 release
1 parent d68b01a commit 272fe25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+115
-145
lines changed

CHANGELOG.md

Lines changed: 2 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
* [Unreleased](#unreleased)
3+
* [1.4.4](#144---2023-04-14)
44
* [1.4.3](#143---2022-12-16)
55
* [1.4.2](#142---2022-08-03)
66
* [1.4.1](#141---2021-08-23)
@@ -30,13 +30,12 @@
3030

3131
All notable changes to this project will be documented in this file.
3232

33-
## Unreleased
33+
## 1.4.4 - 2023-04-14
3434
* ### ALL
3535
* #### Added
3636
* Support for Python 3.11
3737
* #### Changed
3838
* Fix [#1888](https://github.com/ni/nimi-python/issues/1888): Deadlock on multithreaded usage due to UnlockSession always being called with callerHasLock=False.
39-
* #### Removed
4039
* ### `nidcpower` (NI-DCPower)
4140
* #### Added
4241
* Pass Python interpreter information if the driver runtime version supports it. This is used by NI in order to better understand client usage.
@@ -69,42 +68,13 @@ All notable changes to this project will be documented in this file.
6968
* Enums reordered:
7069
* `AutoZero`
7170
* `CableLength`
72-
* #### Removed
7371
* ### `nidigital` (NI-Digital Pattern Driver)
74-
* #### Added
7572
* #### Changed
7673
* Update `GRPC_SERVICE_INTERFACE_NAME` to use the correct gRPC package name (`nidigitalpattern_grpc`).
77-
* #### Removed
78-
* ### `nidmm` (NI-DMM)
79-
* #### Added
80-
* #### Changed
81-
* #### Removed
82-
* ### `nifgen` (NI-FGEN)
83-
* #### Added
84-
* #### Changed
85-
* #### Removed
86-
* ### `nimodinst` (NI-ModInst)
87-
* #### Added
88-
* #### Changed
89-
* #### Removed
9074
* ### `niscope` (NI-SCOPE)
91-
* #### Added
9275
* #### Changed
9376
* Fix [#1941](https://github.com/ni/nimi-python/issues/1941): When calling niscope.Session.fetch_array_measurement in a MeasurementLink measurement plugin, meas_wfm_size cannot be set.
9477
* Requires NI gRPC Device Server 2023 Q2 or later. Older versions do not support this parameter and return all available samples.
95-
* #### Removed
96-
* ### `niswitch` (NI-SWITCH)
97-
* #### Added
98-
* #### Changed
99-
* #### Removed
100-
* ### `nise` (NI Switch Executive)
101-
* #### Added
102-
* #### Changed
103-
* #### Removed
104-
* ### `nitclk` (NI-TClk)
105-
* #### Added
106-
* #### Changed
107-
* #### Removed
10878

10979
## 1.4.3 - 2022-12-16
11080
* ### ALL

LATEST_RELEASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.3
1+
1.4.4

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.4.dev0
1+
1.4.4

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
# built documents.
6464
#
6565
# The full version, including alpha/beta/rc tags.
66-
release = '1.4.4.dev0'
66+
release = '1.4.4'
6767
# The short X.Y version.
6868
version = release[:3]
6969

docs/nidcpower/examples.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples
22
========
33

4-
`You can download all nidcpower examples for latest version here <https://github.com/ni/nimi-python/releases/download/1.4.3/nidcpower_examples.zip>`_
4+
`You can download all nidcpower examples here <https://github.com/ni/nimi-python/releases/download/1.4.4/nidcpower_examples.zip>`_
55

66
nidcpower_advanced_sequence.py
77
------------------------------
@@ -10,7 +10,7 @@ nidcpower_advanced_sequence.py
1010
:language: python
1111
:linenos:
1212
:encoding: utf8
13-
:caption: `(nidcpower_advanced_sequence.py) <https://github.com/ni/nimi-python/blob/master/src/nidcpower/examples/nidcpower_advanced_sequence.py>`_
13+
:caption: `(nidcpower_advanced_sequence.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidcpower/examples/nidcpower_advanced_sequence.py>`_
1414

1515
nidcpower_lcr_source_ac_voltage.py
1616
----------------------------------
@@ -19,7 +19,7 @@ nidcpower_lcr_source_ac_voltage.py
1919
:language: python
2020
:linenos:
2121
:encoding: utf8
22-
:caption: `(nidcpower_lcr_source_ac_voltage.py) <https://github.com/ni/nimi-python/blob/master/src/nidcpower/examples/nidcpower_lcr_source_ac_voltage.py>`_
22+
:caption: `(nidcpower_lcr_source_ac_voltage.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidcpower/examples/nidcpower_lcr_source_ac_voltage.py>`_
2323

2424
nidcpower_measure_record.py
2525
---------------------------
@@ -28,7 +28,7 @@ nidcpower_measure_record.py
2828
:language: python
2929
:linenos:
3030
:encoding: utf8
31-
:caption: `(nidcpower_measure_record.py) <https://github.com/ni/nimi-python/blob/master/src/nidcpower/examples/nidcpower_measure_record.py>`_
31+
:caption: `(nidcpower_measure_record.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidcpower/examples/nidcpower_measure_record.py>`_
3232

3333
nidcpower_source_delay_measure.py
3434
---------------------------------
@@ -37,5 +37,5 @@ nidcpower_source_delay_measure.py
3737
:language: python
3838
:linenos:
3939
:encoding: utf8
40-
:caption: `(nidcpower_source_delay_measure.py) <https://github.com/ni/nimi-python/blob/master/src/nidcpower/examples/nidcpower_source_delay_measure.py>`_
40+
:caption: `(nidcpower_source_delay_measure.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidcpower/examples/nidcpower_source_delay_measure.py>`_
4141

docs/nidcpower/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ As a prerequisite to using the nidcpower module, you must install the NI-DCPower
88

99
The nimi-python modules (i.e. for **NI-DCPower**) can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
1010

11-
$ python -m pip install nidcpower
11+
$ python -m pip install nidcpower~=1.4.4
1212

1313
Or **easy_install** from
1414
`setuptools <http://pypi.python.org/pypi/setuptools>`_::

docs/nidigital/examples.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples
22
========
33

4-
`You can download all nidigital examples for latest version here <https://github.com/ni/nimi-python/releases/download/1.4.3/nidigital_examples.zip>`_
4+
`You can download all nidigital examples here <https://github.com/ni/nimi-python/releases/download/1.4.4/nidigital_examples.zip>`_
55

66
nidigital_burst_with_start_trigger.py
77
-------------------------------------
@@ -10,7 +10,7 @@ nidigital_burst_with_start_trigger.py
1010
:language: python
1111
:linenos:
1212
:encoding: utf8
13-
:caption: `(nidigital_burst_with_start_trigger.py) <https://github.com/ni/nimi-python/blob/master/src/nidigital/examples/burst_with_start_trigger/nidigital_burst_with_start_trigger.py>`_
13+
:caption: `(nidigital_burst_with_start_trigger.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidigital/examples/burst_with_start_trigger/nidigital_burst_with_start_trigger.py>`_
1414

1515
nidigital_configure_time_set_and_voltage_levels.py
1616
--------------------------------------------------
@@ -19,7 +19,7 @@ nidigital_configure_time_set_and_voltage_levels.py
1919
:language: python
2020
:linenos:
2121
:encoding: utf8
22-
:caption: `(nidigital_configure_time_set_and_voltage_levels.py) <https://github.com/ni/nimi-python/blob/master/src/nidigital/examples/configure_time_set_and_voltage_levels/nidigital_configure_time_set_and_voltage_levels.py>`_
22+
:caption: `(nidigital_configure_time_set_and_voltage_levels.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidigital/examples/configure_time_set_and_voltage_levels/nidigital_configure_time_set_and_voltage_levels.py>`_
2323

2424
nidigital_ppmu_source_and_measure.py
2525
------------------------------------
@@ -28,5 +28,5 @@ nidigital_ppmu_source_and_measure.py
2828
:language: python
2929
:linenos:
3030
:encoding: utf8
31-
:caption: `(nidigital_ppmu_source_and_measure.py) <https://github.com/ni/nimi-python/blob/master/src/nidigital/examples/ppmu_source_and_measure/nidigital_ppmu_source_and_measure.py>`_
31+
:caption: `(nidigital_ppmu_source_and_measure.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidigital/examples/ppmu_source_and_measure/nidigital_ppmu_source_and_measure.py>`_
3232

docs/nidigital/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ As a prerequisite to using the nidigital module, you must install the NI-Digital
88

99
The nimi-python modules (i.e. for **NI-Digital Pattern Driver**) can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
1010

11-
$ python -m pip install nidigital
11+
$ python -m pip install nidigital~=1.4.4
1212

1313
Or **easy_install** from
1414
`setuptools <http://pypi.python.org/pypi/setuptools>`_::

docs/nidmm/examples.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Examples
22
========
33

4-
`You can download all nidmm examples for latest version here <https://github.com/ni/nimi-python/releases/download/1.4.3/nidmm_examples.zip>`_
4+
`You can download all nidmm examples here <https://github.com/ni/nimi-python/releases/download/1.4.4/nidmm_examples.zip>`_
55

66
nidmm_fetch_waveform.py
77
-----------------------
@@ -10,7 +10,7 @@ nidmm_fetch_waveform.py
1010
:language: python
1111
:linenos:
1212
:encoding: utf8
13-
:caption: `(nidmm_fetch_waveform.py) <https://github.com/ni/nimi-python/blob/master/src/nidmm/examples/nidmm_fetch_waveform.py>`_
13+
:caption: `(nidmm_fetch_waveform.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidmm/examples/nidmm_fetch_waveform.py>`_
1414

1515
nidmm_measurement.py
1616
--------------------
@@ -19,7 +19,7 @@ nidmm_measurement.py
1919
:language: python
2020
:linenos:
2121
:encoding: utf8
22-
:caption: `(nidmm_measurement.py) <https://github.com/ni/nimi-python/blob/master/src/nidmm/examples/nidmm_measurement.py>`_
22+
:caption: `(nidmm_measurement.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidmm/examples/nidmm_measurement.py>`_
2323

2424
nidmm_multi_point_measurement.py
2525
--------------------------------
@@ -28,5 +28,5 @@ nidmm_multi_point_measurement.py
2828
:language: python
2929
:linenos:
3030
:encoding: utf8
31-
:caption: `(nidmm_multi_point_measurement.py) <https://github.com/ni/nimi-python/blob/master/src/nidmm/examples/nidmm_multi_point_measurement.py>`_
31+
:caption: `(nidmm_multi_point_measurement.py) <https://github.com/ni/nimi-python/blob/1.4.4/src/nidmm/examples/nidmm_multi_point_measurement.py>`_
3232

docs/nidmm/installation.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ As a prerequisite to using the nidmm module, you must install the NI-DMM runtime
88

99
The nimi-python modules (i.e. for **NI-DMM**) can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
1010

11-
$ python -m pip install nidmm
11+
$ python -m pip install nidmm~=1.4.4
1212

1313
Or **easy_install** from
1414
`setuptools <http://pypi.python.org/pypi/setuptools>`_::

0 commit comments

Comments
 (0)